1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
|
/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
Some parts of this code are derived from ITK. See ITKCopyright.txt
for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef otbStreamingMatrixTransposeMatrixImageFilter_txx
#define otbStreamingMatrixTransposeMatrixImageFilter_txx
#include "otbStreamingMatrixTransposeMatrixImageFilter.h"
#include "itkImageRegionIterator.h"
#include "itkNumericTraits.h"
#include "itkProgressReporter.h"
namespace otb
{
template<class TInputImage, class TInputImage2>
PersistentMatrixTransposeMatrixImageFilter<TInputImage, TInputImage2>
::PersistentMatrixTransposeMatrixImageFilter()
{
this->SetNumberOfRequiredInputs(2);
// first output is a copy of the image, DataObject created by
// superclass
//
// allocate the data objects for the outputs which are
// just decorators around pixel types
typename ImageType::Pointer output1 = static_cast<ImageType*>(this->MakeOutput(0).GetPointer());
this->itk::ProcessObject::SetNthOutput(0, output1.GetPointer());
typename MatrixObjectType::Pointer output2 = static_cast<MatrixObjectType*>(this->MakeOutput(1).GetPointer());
this->itk::ProcessObject::SetNthOutput(1, output2.GetPointer());
// false means no pad added
m_UsePadFirstInput = false;
m_UsePadSecondInput = false;
// Number of component initialization
m_NumberOfComponents1 = 0;
m_NumberOfComponents2 = 0;
}
template<class TInputImage, class TInputImage2>
itk::DataObject::Pointer
PersistentMatrixTransposeMatrixImageFilter<TInputImage, TInputImage2>
::MakeOutput(DataObjectPointerArraySizeType output)
{
switch (output)
{
case 0:
return static_cast<itk::DataObject*>(TInputImage::New().GetPointer());
break;
case 1:
return static_cast<itk::DataObject*>(MatrixObjectType::New().GetPointer());
break;
default:
// might as well make an image
return static_cast<itk::DataObject*>(TInputImage::New().GetPointer());
break;
}
}
template<class TInputImage, class TInputImage2>
typename PersistentMatrixTransposeMatrixImageFilter<TInputImage, TInputImage2>::MatrixObjectType*
PersistentMatrixTransposeMatrixImageFilter<TInputImage, TInputImage2>
::GetResultOutput()
{
return static_cast<MatrixObjectType*>(this->itk::ProcessObject::GetOutput(1));
}
template<class TInputImage, class TInputImage2>
const typename PersistentMatrixTransposeMatrixImageFilter<TInputImage, TInputImage2>::MatrixObjectType*
PersistentMatrixTransposeMatrixImageFilter<TInputImage, TInputImage2>
::GetResultOutput() const
{
return static_cast<const MatrixObjectType*>(this->itk::ProcessObject::GetOutput(1));
}
template<class TInputImage, class TInputImage2>
void
PersistentMatrixTransposeMatrixImageFilter<TInputImage, TInputImage2>
::GenerateInputRequestedRegion()
{
Superclass::GenerateInputRequestedRegion();
if (this->GetFirstInput() && this->GetSecondInput())
{
InputImagePointer image = const_cast<typename Superclass::InputImageType *>(this->GetFirstInput());
InputImagePointer image2 = const_cast<typename Superclass::InputImageType *>(this->GetSecondInput());
image->SetRequestedRegion(this->GetOutput()->GetRequestedRegion());
image2->SetRequestedRegion(this->GetOutput()->GetRequestedRegion());
}
}
template<class TInputImage, class TInputImage2>
void
PersistentMatrixTransposeMatrixImageFilter<TInputImage, TInputImage2>
::GenerateOutputInformation()
{
Superclass::GenerateOutputInformation();
if (this->GetFirstInput())
{
this->GetOutput()->CopyInformation(this->GetFirstInput());
this->GetOutput()->SetLargestPossibleRegion(this->GetFirstInput()->GetLargestPossibleRegion());
}
if (this->GetOutput()->GetRequestedRegion().GetNumberOfPixels() == 0)
{
this->GetOutput()->SetRequestedRegion(this->GetOutput()->GetLargestPossibleRegion());
}
}
template<class TInputImage, class TInputImage2>
void
PersistentMatrixTransposeMatrixImageFilter<TInputImage, TInputImage2>
::AllocateOutputs()
{
// This is commented to prevent the streaming of the whole image for the first stream strip
// It shall not cause any problem because the output image of this filter is not intended to be used.
//InputImagePointer image = const_cast< TInputImage * >( this->GetInput() );
//this->GraftOutput( image );
// Nothing that needs to be allocated for the remaining outputs
}
template<class TInputImage, class TInputImage2>
void
PersistentMatrixTransposeMatrixImageFilter<TInputImage, TInputImage2>
::Reset()
{
TInputImage * inputPtr1 = const_cast<TInputImage *>(this->GetFirstInput());
inputPtr1->UpdateOutputInformation();
TInputImage2 * inputPtr2 = const_cast<TInputImage2 *>(this->GetSecondInput());
inputPtr2->UpdateOutputInformation();
if (this->GetOutput()->GetRequestedRegion().GetNumberOfPixels() == 0)
{
this->GetOutput()->SetRequestedRegion(this->GetOutput()->GetLargestPossibleRegion());
}
if (inputPtr1->GetLargestPossibleRegion().GetSize() != inputPtr2->GetLargestPossibleRegion().GetSize())
{
itkExceptionMacro(<< " Can't multiply the transposed matrix of a "
<< inputPtr1->GetLargestPossibleRegion().GetSize()
<< " and a "
<< inputPtr2->GetLargestPossibleRegion().GetSize()
<< " matrix ");
}
m_NumberOfComponents1 = inputPtr1->GetNumberOfComponentsPerPixel();
m_NumberOfComponents2 = inputPtr2->GetNumberOfComponentsPerPixel();
unsigned int numberOfThreads = this->GetNumberOfThreads();
if (m_UsePadFirstInput == true)
{
m_NumberOfComponents1++;
}
if (m_UsePadSecondInput == true)
{
m_NumberOfComponents2++;
}
MatrixType tempMatrix, initMatrix;
tempMatrix.SetSize(m_NumberOfComponents1, m_NumberOfComponents2);
tempMatrix.Fill(itk::NumericTraits<RealType>::Zero);
m_ThreadSum = ArrayMatrixType(numberOfThreads, tempMatrix);
initMatrix.SetSize(m_NumberOfComponents2, m_NumberOfComponents2);
initMatrix.Fill(itk::NumericTraits<RealType>::Zero);
this->GetResultOutput()->Set(initMatrix);
}
template<class TInputImage, class TInputImage2>
void
PersistentMatrixTransposeMatrixImageFilter<TInputImage, TInputImage2>
::Synthetize()
{
unsigned int numberOfThreads = this->GetNumberOfThreads();
MatrixType resultMatrix;
resultMatrix.SetSize(m_NumberOfComponents1, m_NumberOfComponents2);
resultMatrix.Fill(itk::NumericTraits<RealType>::Zero);
for (unsigned int thread = 0; thread < numberOfThreads; thread++)
{
/** TODO
* To modify using + method operator. If we use it now -> exceptionmacro (no GetClassName...)
* resultMatrix += m_ThreadSum[thread];
**/
for (unsigned int i = 0; i < resultMatrix.Rows(); ++i)
{
for (unsigned int j = 0; j < resultMatrix.Cols(); ++j)
{
resultMatrix(i, j) += m_ThreadSum[thread](i, j);
}
}
/********END TODO ******/
}
this->GetResultOutput()->Set(resultMatrix);
}
template<class TInputImage, class TInputImage2>
void
PersistentMatrixTransposeMatrixImageFilter<TInputImage, TInputImage2>
::ThreadedGenerateData(const RegionType& outputRegionForThread, itk::ThreadIdType threadId)
{
/**
* Grab the input
*/
InputImagePointer input1Ptr = const_cast<TInputImage *>(this->GetFirstInput());
InputImagePointer input2Ptr = const_cast<TInputImage2 *>(this->GetSecondInput());
// support progress methods/callbacks
itk::ProgressReporter progress(this, threadId, outputRegionForThread.GetNumberOfPixels());
itk::ImageRegionConstIterator<TInputImage> it1(input1Ptr, outputRegionForThread);
itk::ImageRegionConstIterator<TInputImage2> it2(input2Ptr, outputRegionForThread);
it1.GoToBegin();
it2.GoToBegin();
// loop the second image and get one pixel a time
while (!it1.IsAtEnd())
{
PixelType vectorValue1 = it1.Get();
PixelType2 vectorValue2 = it2.Get();
// Add a first component to vectorValue2 and vectorValue1 filled with ones.
if (m_UsePadFirstInput == true)
{
PixelType vectortemp1(vectorValue1.Size() + 1);
vectortemp1[0] = 1;
for (unsigned int n = 0; n < vectorValue1.Size(); ++n)
{
vectortemp1[n + 1] = vectorValue1[n];
}
vectorValue1.SetSize(vectortemp1.Size());
vectorValue1 = vectortemp1;
}
if (m_UsePadSecondInput == true)
{
PixelType2 vectortemp2(vectorValue2.Size() + 1);
vectortemp2[0] = 1;
for (unsigned int m = 0; m < vectorValue2.Size(); m++)
{
vectortemp2[m + 1] = vectorValue2[m];
}
vectorValue2.SetSize(vectortemp2.Size());
vectorValue2 = vectortemp2;
}
for (unsigned int i = 0; i < vectorValue1.Size(); ++i)
{
for (unsigned int j = 0; j < vectorValue2.Size(); ++j)
{
m_ThreadSum[threadId](i, j) += static_cast<RealType>(vectorValue1[i]) * static_cast<RealType>(vectorValue2[j]);
}
}
++it1;
++it2;
progress.CompletedPixel();
}
}
template<class TInputImage, class TInputImage2>
void
PersistentMatrixTransposeMatrixImageFilter<TInputImage, TInputImage2>
::PrintSelf(std::ostream& os, itk::Indent indent) const
{
Superclass::PrintSelf(os, indent);
os << indent << "Result: " << this->GetResultOutput()->Get() << std::endl;
}
} // end namespace otb
#endif
|