21 #ifndef otbMultiToMonoChannelExtractROI_hxx
22 #define otbMultiToMonoChannelExtractROI_hxx
32 template <
class TInputPixelType,
class TOutputPixelType>
36 this->DynamicMultiThreadingOn();
42 template <
class TInputPixelType,
class TOutputPixelType>
45 Superclass::PrintSelf(os, indent);
57 template <
class TInputPixelType,
class TOutputPixelType>
60 typename Superclass::InputImageConstPointer inputPtr = this->GetInput();
62 if ((m_Channel <= 0) || (m_Channel > inputPtr->GetVectorLength()))
64 itkExceptionMacro(<<
"otb::MultiToMonoChannelExtractROI::GenerateOutputInformation "
65 <<
"The selected channel must in the range [1;" << inputPtr->GetVectorLength() <<
"] "
66 <<
typeid(itk::ImageBase<InputImageDimension>*).name());
71 Superclass::GenerateOutputInformation();
74 template <
class TInputPixelType,
class TOutputPixelType>
77 itkDebugMacro(<<
"Actually executing");
80 typename Superclass::InputImageConstPointer inputPtr = this->GetInput();
81 typename Superclass::OutputImagePointer outputPtr = this->GetOutput();
85 this->CallCopyOutputRegionToInputRegion(inputRegionForThread, outputRegionForThread);
88 typedef itk::ImageRegionIterator<OutputImageType> OutputIterator;
89 typedef itk::ImageRegionConstIterator<InputImageType> InputIterator;
91 OutputIterator outIt(outputPtr, outputRegionForThread);
92 InputIterator inIt(inputPtr, inputRegionForThread);
95 const unsigned int channelIn(m_Channel - 1);
97 while (!outIt.IsAtEnd())
102 outIt.Set(pixelOutput);
Creation of an "otb" image which contains metadata.
Creation of an "otb" vector image which contains metadata.
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.