22 #ifndef otbStreamingMatrixTransposeMatrixImageFilter_hxx
23 #define otbStreamingMatrixTransposeMatrixImageFilter_hxx
27 #include "itkImageRegionIterator.h"
28 #include "itkNumericTraits.h"
29 #include "itkProgressReporter.h"
34 template <
class TInputImage,
class TInputImage2>
37 this->DynamicMultiThreadingOff();
38 this->SetNumberOfRequiredInputs(2);
46 typename ImageType::Pointer output1 =
static_cast<ImageType*
>(this->MakeOutput(0).GetPointer());
47 this->itk::ProcessObject::SetNthOutput(0, output1.GetPointer());
48 typename MatrixObjectType::Pointer output2 =
static_cast<MatrixObjectType*
>(this->MakeOutput(1).GetPointer());
49 this->itk::ProcessObject::SetNthOutput(1, output2.GetPointer());
52 m_UsePadFirstInput =
false;
53 m_UsePadSecondInput =
false;
56 m_NumberOfComponents1 = 0;
57 m_NumberOfComponents2 = 0;
60 template <
class TInputImage,
class TInputImage2>
66 return static_cast<itk::DataObject*
>(TInputImage::New().GetPointer());
69 return static_cast<itk::DataObject*
>(MatrixObjectType::New().GetPointer());
73 return static_cast<itk::DataObject*
>(TInputImage::New().GetPointer());
77 template <
class TInputImage,
class TInputImage2>
81 return static_cast<MatrixObjectType*
>(this->itk::ProcessObject::GetOutput(1));
84 template <
class TInputImage,
class TInputImage2>
88 return static_cast<const MatrixObjectType*
>(this->itk::ProcessObject::GetOutput(1));
91 template <
class TInputImage,
class TInputImage2>
94 Superclass::GenerateInputRequestedRegion();
96 if (this->GetFirstInput() && this->GetSecondInput())
100 image->SetRequestedRegion(this->GetOutput()->GetRequestedRegion());
101 image2->SetRequestedRegion(this->GetOutput()->GetRequestedRegion());
104 template <
class TInputImage,
class TInputImage2>
107 Superclass::GenerateOutputInformation();
108 if (this->GetFirstInput())
110 this->GetOutput()->CopyInformation(this->GetFirstInput());
111 this->GetOutput()->SetLargestPossibleRegion(this->GetFirstInput()->GetLargestPossibleRegion());
114 if (this->GetOutput()->GetRequestedRegion().GetNumberOfPixels() == 0)
116 this->GetOutput()->SetRequestedRegion(this->GetOutput()->GetLargestPossibleRegion());
120 template <
class TInputImage,
class TInputImage2>
130 template <
class TInputImage,
class TInputImage2>
134 TInputImage* inputPtr1 =
const_cast<TInputImage*
>(this->GetFirstInput());
135 inputPtr1->UpdateOutputInformation();
136 TInputImage2* inputPtr2 =
const_cast<TInputImage2*
>(this->GetSecondInput());
137 inputPtr2->UpdateOutputInformation();
139 if (this->GetOutput()->GetRequestedRegion().GetNumberOfPixels() == 0)
141 this->GetOutput()->SetRequestedRegion(this->GetOutput()->GetLargestPossibleRegion());
144 if (inputPtr1->GetLargestPossibleRegion().GetSize() != inputPtr2->GetLargestPossibleRegion().GetSize())
146 itkExceptionMacro(<<
" Can't multiply the transposed matrix of a " << inputPtr1->GetLargestPossibleRegion().GetSize() <<
" and a "
147 << inputPtr2->GetLargestPossibleRegion().GetSize() <<
" matrix ");
150 m_NumberOfComponents1 = inputPtr1->GetNumberOfComponentsPerPixel();
151 m_NumberOfComponents2 = inputPtr2->GetNumberOfComponentsPerPixel();
152 unsigned int numberOfThreads = this->GetNumberOfWorkUnits();
154 if (m_UsePadFirstInput ==
true)
156 m_NumberOfComponents1++;
158 if (m_UsePadSecondInput ==
true)
160 m_NumberOfComponents2++;
164 tempMatrix.SetSize(m_NumberOfComponents1, m_NumberOfComponents2);
165 tempMatrix.Fill(itk::NumericTraits<RealType>::Zero);
168 initMatrix.SetSize(m_NumberOfComponents2, m_NumberOfComponents2);
169 initMatrix.Fill(itk::NumericTraits<RealType>::Zero);
170 this->GetResultOutput()->Set(initMatrix);
173 template <
class TInputImage,
class TInputImage2>
176 unsigned int numberOfThreads = this->GetNumberOfWorkUnits();
178 resultMatrix.SetSize(m_NumberOfComponents1, m_NumberOfComponents2);
179 resultMatrix.Fill(itk::NumericTraits<RealType>::Zero);
181 for (
unsigned int thread = 0; thread < numberOfThreads; thread++)
187 for (
unsigned int i = 0; i < resultMatrix.Rows(); ++i)
189 for (
unsigned int j = 0; j < resultMatrix.Cols(); ++j)
191 resultMatrix(i, j) += m_ThreadSum[thread](i, j);
197 this->GetResultOutput()->Set(resultMatrix);
200 template <
class TInputImage,
class TInputImage2>
202 itk::ThreadIdType threadId)
212 itk::ProgressReporter progress(
this, threadId, outputRegionForThread.GetNumberOfPixels());
214 itk::ImageRegionConstIterator<TInputImage> it1(input1Ptr, outputRegionForThread);
215 itk::ImageRegionConstIterator<TInputImage2> it2(input2Ptr, outputRegionForThread);
220 while (!it1.IsAtEnd())
226 if (m_UsePadFirstInput ==
true)
228 PixelType vectortemp1(vectorValue1.Size() + 1);
230 for (
unsigned int n = 0; n < vectorValue1.Size(); ++n)
232 vectortemp1[n + 1] = vectorValue1[n];
234 vectorValue1.SetSize(vectortemp1.Size());
235 vectorValue1 = vectortemp1;
238 if (m_UsePadSecondInput ==
true)
240 PixelType2 vectortemp2(vectorValue2.Size() + 1);
242 for (
unsigned int m = 0; m < vectorValue2.Size(); m++)
244 vectortemp2[m + 1] = vectorValue2[m];
246 vectorValue2.SetSize(vectortemp2.Size());
247 vectorValue2 = vectortemp2;
250 for (
unsigned int i = 0; i < vectorValue1.Size(); ++i)
252 for (
unsigned int j = 0; j < vectorValue2.Size(); ++j)
254 m_ThreadSum[threadId](i, j) +=
static_cast<RealType>(vectorValue1[i]) *
static_cast<RealType>(vectorValue2[j]);
259 progress.CompletedPixel();
263 template <
class TInputImage,
class TInputImage2>
266 Superclass::PrintSelf(os, indent);
268 os << indent <<
"Result: " << this->GetResultOutput()->Get() << std::endl;
TInputImage InputImageType
itk::SimpleDataObjectDecorator< MatrixType > MatrixObjectType
DataObjectPointer MakeOutput(DataObjectPointerArraySizeType idx) override
itk::VariableSizeMatrix< RealType > MatrixType
TInputImage::RegionType RegionType
void GenerateOutputInformation() override
std::vector< MatrixType > ArrayMatrixType
void ThreadedGenerateData(const RegionType &outputRegionForThread, itk::ThreadIdType threadId) override
TInputImage::PixelType PixelType
PersistentMatrixTransposeMatrixImageFilter()
void PrintSelf(std::ostream &os, itk::Indent indent) const override
void AllocateOutputs() override
void GenerateInputRequestedRegion() override
void Reset(void) override
TInputImage::Pointer InputImagePointer
void Synthetize(void) override
MatrixObjectType * GetResultOutput()
itk::ProcessObject::DataObjectPointerArraySizeType DataObjectPointerArraySizeType
TInputImage2::PixelType PixelType2
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.