OTB  10.0.0
Orfeo Toolbox
otbAngularProjectionImageFilter.hxx
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 otbAngularProjectionImageFilter_hxx
22 #define otbAngularProjectionImageFilter_hxx
24 
25 #include <vnl/vnl_math.h>
26 
27 #include <itkImageRegionIterator.h>
28 #include <itkProgressAccumulator.h>
29 
30 namespace otb
31 {
32 
33 template <class TInputImage, class TOutputImage, class TAngleArray, class TPrecision>
35 {
36  // this->SetNumberOfRequiredInputs(NumberOfInputImages);
37  this->SetNumberOfRequiredOutputs(1);
38  this->DynamicMultiThreadingOn();
39 }
40 
41 template <class TInputImage, class TOutputImage, class TAngleArray, class TPrecision>
43 {
44  this->itk::ProcessObject::SetNthInput(i, const_cast<InputImageType*>(img));
45 }
46 
47 template <class TInputImage, class TOutputImage, class TAngleArray, class TPrecision>
49 {
50  if (i >= this->GetNumberOfInputs())
51  {
52  return nullptr;
53  }
54 
55  return static_cast<const InputImageType*>(this->itk::ProcessObject::GetInput(i));
56 }
57 
58 template <class TInputImage, class TOutputImage, class TAngleArray, class TPrecision>
60 {
61  InputImageRegionType inputRegionForThread;
62  this->CallCopyOutputRegionToInputRegion(inputRegionForThread, outputRegionForThread);
63 
64  bool iteratorsAtEnd = false;
65  ImageRegionConstIteratorVectorType it(this->GetNumberOfInputs());
66  for (unsigned int i = 0; i < this->GetNumberOfInputs(); ++i)
67  {
68  it[i] = ImageRegionConstIteratorType(this->GetInput(i), inputRegionForThread);
69  it[i].GoToBegin();
70  if (it[i].IsAtEnd())
71  iteratorsAtEnd = true;
72  }
73 
74  itk::ImageRegionIterator<OutputImageType> outIter(this->GetOutput(), outputRegionForThread);
75  outIter.GoToBegin();
76 
77  while (!iteratorsAtEnd && !outIter.IsAtEnd())
78  {
79  outIter.Set(InternalGenerateData(it));
80 
81  ++outIter;
82  for (unsigned int i = 0; i < this->GetNumberOfInputs(); ++i)
83  {
84  ++(it[i]);
85  if (it[i].IsAtEnd())
86  iteratorsAtEnd = true;
87  }
88  }
89 }
90 
91 template <class TInputImage, class TOutputImage, class TAngleArray, class TPrecision>
94 {
95  PrecisionType output = 0;
96 
97  if (this->GetNumberOfInputs() == 2)
98  {
99  PrecisionType alpha = static_cast<PrecisionType>(m_AngleArray[0]);
100  output = static_cast<PrecisionType>(it[0].Get()) * std::cos(alpha) - static_cast<PrecisionType>(it[1].Get()) * std::sin(alpha);
101  }
102  else if (this->GetNumberOfInputs() == 3)
103  {
104  PrecisionType alpha = static_cast<PrecisionType>(m_AngleArray[0]);
105  PrecisionType beta = static_cast<PrecisionType>(m_AngleArray[1]);
106 
107  output = static_cast<PrecisionType>(it[0].Get()) * std::cos(alpha) - static_cast<PrecisionType>(it[1].Get()) * std::sin(alpha) * std::cos(beta) +
108  static_cast<PrecisionType>(it[2].Get()) * std::sin(alpha) * std::sin(beta);
109  }
110  else
111  {
112  unsigned int i = this->GetNumberOfInputs() - 1;
113  output = static_cast<PrecisionType>(it[i--].Get());
114 
115  do
116  {
117  PrecisionType alpha = static_cast<PrecisionType>(m_AngleArray[i]);
118  output = static_cast<PrecisionType>(it[i].Get()) * std::cos(alpha) - output * std::sin(alpha);
119  } while (i-- == 0);
120  }
121 
122  return static_cast<OutputImagePixelType>(output);
123 }
124 
125 } // end of namespace otb
126 
127 #endif
virtual OutputImagePixelType InternalGenerateData(const ImageRegionConstIteratorVectorType &) const
const InputImageType * GetInput(unsigned int i) const
std::vector< ImageRegionConstIteratorType > ImageRegionConstIteratorVectorType
itk::ImageRegionConstIterator< InputImageType > ImageRegionConstIteratorType
void DynamicThreadedGenerateData(const OutputImageRegionType &outputRegionForThread) override
void SetInput(unsigned int i, const InputImageType *) override
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.