OTB  10.0.0
Orfeo Toolbox
otbImageToGenericRSOutputParameters.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2005-2024 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 otbImageToGenericRSOutputParameters_h
22 #define otbImageToGenericRSOutputParameters_h
23 
24 #include "itkObject.h"
25 #include "otbGenericRSTransform.h"
26 #include "otbImageMetadata.h"
27 #include <string>
28 
29 namespace otb
30 {
31 
56 template <class TImage>
57 class ImageToGenericRSOutputParameters : public itk::Object
58 {
59 public:
62  typedef itk::Object Superclass;
63  typedef itk::SmartPointer<Self> Pointer;
64  typedef itk::SmartPointer<const Self> ConstPointer;
65 
67  itkTypeMacro(ImageToGenericRSOutputParameters, itk::Object);
68 
70  itkNewMacro(Self);
71 
73  typedef TImage ImageType;
74  typedef typename ImageType::SizeType SizeType;
75  typedef typename ImageType::IndexType IndexType;
76  typedef typename ImageType::SpacingType SpacingType;
77  typedef typename ImageType::PointType PointType;
78 
82 
87  {
88  double minX;
89  double maxX;
90  double minY;
91  double maxY;
92  };
93 
95  itkSetConstObjectMacro(Input, ImageType);
96  itkGetConstObjectMacro(Input, ImageType);
98 
100  itkSetMacro(OutputOrigin, PointType);
101  itkGetMacro(OutputOrigin, PointType);
103 
105  itkSetMacro(OutputSpacing, SpacingType);
106  itkGetMacro(OutputSpacing, SpacingType);
108 
110  itkSetMacro(OutputSize, SizeType);
111  itkGetMacro(OutputSize, SizeType);
113 
115  itkSetMacro(EstimateIsotropicSpacing, bool);
116  itkGetMacro(EstimateIsotropicSpacing, bool);
117  itkBooleanMacro(EstimateIsotropicSpacing);
119 
124  void ForceSpacingTo(const SpacingType& spacing)
125  {
126  m_ForceSpacing = true;
127  this->SetOutputSpacing(spacing);
128  }
130 
135  void ForceSizeTo(const SizeType& size)
136  {
137  m_ForceSize = true;
138  this->SetOutputSize(size);
139  }
141 
148  void SetOutputProjectionRef(const std::string& ref)
149  {
150  m_Transform->SetInputProjectionRef(ref);
151  this->Modified();
152  }
154 
155  std::string GetInputProjectionRef() const
156  {
157  return m_Transform->GetOutputProjectionRef();
158  }
159 
163  {
164  m_Transform->SetOutputImageMetadata(imd);
165  this->Modified();
166  }
168 
170  {
171  return m_Transform->GetOutputImageMetadata();
172  }
173 
175  void Compute();
176 
177 protected:
180  {
181  }
182 
183 private:
185  void operator=(const Self&) = delete;
186 
187  void UpdateTransform();
189  void EstimateOutputSpacing();
190  void EstimateOutputSize();
191  void EstimateOutputOrigin();
192 
193  typename ImageType::ConstPointer m_Input;
198 
200 
204 
205 }; // end of class ImageToGenericRSOutputParameters
206 
207 } // end of namespace otb
208 
209 #ifndef OTB_MANUAL_INSTANTIATION
211 #endif
212 
213 #endif
This is the class to handle generic remote sensing transform.
itk::SmartPointer< Self > Pointer
Generic class containing image metadata used in OTB.
This class is a helper class to estimate the output parameters of an image after projection in a targ...
virtual void SetOutputSize(SizeType _arg)
virtual void SetOutputSpacing(SpacingType _arg)
GenericRSTransformType::Pointer GenericRSTransformPointerType
void operator=(const Self &)=delete
ImageToGenericRSOutputParameters(const Self &)=delete
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.