21 #ifndef otbAngularProjectionImageFilter_hxx
22 #define otbAngularProjectionImageFilter_hxx
25 #include <vnl/vnl_math.h>
27 #include <itkImageRegionIterator.h>
28 #include <itkProgressAccumulator.h>
33 template <
class TInputImage,
class TOutputImage,
class TAngleArray,
class TPrecision>
37 this->SetNumberOfRequiredOutputs(1);
38 this->DynamicMultiThreadingOn();
41 template <
class TInputImage,
class TOutputImage,
class TAngleArray,
class TPrecision>
44 this->itk::ProcessObject::SetNthInput(i,
const_cast<InputImageType*
>(img));
47 template <
class TInputImage,
class TOutputImage,
class TAngleArray,
class TPrecision>
50 if (i >= this->GetNumberOfInputs())
55 return static_cast<const InputImageType*
>(this->itk::ProcessObject::GetInput(i));
58 template <
class TInputImage,
class TOutputImage,
class TAngleArray,
class TPrecision>
62 this->CallCopyOutputRegionToInputRegion(inputRegionForThread, outputRegionForThread);
64 bool iteratorsAtEnd =
false;
66 for (
unsigned int i = 0; i < this->GetNumberOfInputs(); ++i)
71 iteratorsAtEnd =
true;
74 itk::ImageRegionIterator<OutputImageType> outIter(this->GetOutput(), outputRegionForThread);
77 while (!iteratorsAtEnd && !outIter.IsAtEnd())
79 outIter.Set(InternalGenerateData(it));
82 for (
unsigned int i = 0; i < this->GetNumberOfInputs(); ++i)
86 iteratorsAtEnd =
true;
91 template <
class TInputImage,
class TOutputImage,
class TAngleArray,
class TPrecision>
97 if (this->GetNumberOfInputs() == 2)
100 output =
static_cast<PrecisionType>(it[0].Get()) * std::cos(alpha) -
static_cast<PrecisionType>(it[1].Get()) * std::sin(alpha);
102 else if (this->GetNumberOfInputs() == 3)
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);
112 unsigned int i = this->GetNumberOfInputs() - 1;
118 output =
static_cast<PrecisionType>(it[i].Get()) * std::cos(alpha) - output * std::sin(alpha);
InputImageType::RegionType InputImageRegionType
virtual OutputImagePixelType InternalGenerateData(const ImageRegionConstIteratorVectorType &) const
const InputImageType * GetInput(unsigned int i) const
TInputImage InputImageType
OutputImageType::RegionType OutputImageRegionType
AngularProjectionImageFilter()
std::vector< ImageRegionConstIteratorType > ImageRegionConstIteratorVectorType
itk::ImageRegionConstIterator< InputImageType > ImageRegionConstIteratorType
void DynamicThreadedGenerateData(const OutputImageRegionType &outputRegionForThread) override
void SetInput(unsigned int i, const InputImageType *) override
OutputImageType::PixelType OutputImagePixelType
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.