OTB  9.0.0
Orfeo Toolbox
otbRPCInverseTransform.hxx
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2005-2022 Centre National d'Etudes Spatiales (CNES)
3  *
4  * This file is part of Orfeo Toolbox
5  *
6  * https://www.orfeo-toolbox.org/
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20 
21 #ifndef otbRPCInverseTransform_hxx
22 #define otbRPCInverseTransform_hxx
23 
24 #include "otbRPCInverseTransform.h"
25 
26 namespace otb
27 {
28 template <class TScalarType, unsigned int NInputDimensions, unsigned int NOutputDimensions>
30 {}
31 
32 template <class TScalarType, unsigned int NInputDimensions, unsigned int NOutputDimensions>
35 {
37  zePoint[0] = static_cast<double>(point[0]);
38  zePoint[1] = static_cast<double>(point[1]);
39  if (NInputDimensions > 2)
40  zePoint[2] = static_cast<double>(point[2]);
41  else
42  zePoint[2] = 0.;
43 
44  zePoint = this->m_Transformer->InverseTransform(zePoint);
45 
46  OutputPointType pOut;
47  pOut[0] = static_cast<TScalarType>(zePoint[0]);
48  pOut[1] = static_cast<TScalarType>(zePoint[1]);
49 
50  if (NOutputDimensions > 2)
51  pOut[2] = static_cast<TScalarType>(zePoint[2]);
52 
53  return pOut;
54 }
55 
59 template <class TScalarType, unsigned int NInputDimensions, unsigned int NOutputDimensions>
61 {
62  Superclass::PrintSelf(os, indent);
63  os << indent << "Transformation direction: Inverse" << std::endl;
64 }
66 
67 }
68 
69 #endif
otb::GDALRPCTransformer::PointType
itk::Point< double, 3 > PointType
Definition: otbGDALRPCTransformer.h:56
otb::Transform< TScalarType, 2, 3 >::TransformDirection
TransformDirection
Definition: otbPCAImageFilter.h:34
otb::RPCInverseTransform::PrintSelf
void PrintSelf(std::ostream &os, itk::Indent indent) const override
Definition: otbRPCInverseTransform.hxx:60
otb::RPCInverseTransform::InputPointType
itk::Point< TScalarType, NInputDimensions > InputPointType
Definition: otbRPCInverseTransform.h:48
otb
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.
Definition: otbJoinContainer.h:32
otbRPCInverseTransform.h
otb::RPCInverseTransform::OutputPointType
itk::Point< TScalarType, NOutputDimensions > OutputPointType
Definition: otbRPCInverseTransform.h:49
otb::RPCTransformBase
Base projection class based on the RPC method.
Definition: otbRPCTransformBase.h:45
otb::RPCInverseTransform::RPCInverseTransform
RPCInverseTransform()
Definition: otbRPCInverseTransform.hxx:29
otb::RPCInverseTransform::TransformPoint
OutputPointType TransformPoint(const InputPointType &point) const override
Definition: otbRPCInverseTransform.hxx:34