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
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkImageToVectorImageFilter.txx
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm 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 __itkImageToVectorImageFilter_txx
#define __itkImageToVectorImageFilter_txx
#include "itkImageToVectorImageFilter.h"
#include "itkImageRegionConstIterator.h"
#include "itkImageRegionConstIteratorWithIndex.h"
#include "itkImageRegionIterator.h"
namespace itk {
//----------------------------------------------------------------------------
template< class TInputImage >
ImageToVectorImageFilter< TInputImage >
::ImageToVectorImageFilter()
{
// At least 1 inputs is necessary for a vector image.
this->SetNumberOfRequiredInputs( 1 );
}
//----------------------------------------------------------------------------
template< class TInputImage >
void
ImageToVectorImageFilter< TInputImage >
::GenerateOutputInformation(void)
{
// Override the method in itkImageSource, so we can set the vector length of
// the output itk::VectorImage
this->Superclass::GenerateOutputInformation();
OutputImageType * output = this->GetOutput();
output->SetVectorLength(this->GetNumberOfInputs());
}
//----------------------------------------------------------------------------
template< class TInputImage >
void
ImageToVectorImageFilter< TInputImage >
::BeforeThreadedGenerateData()
{
// Check to verify all inputs are specified and have the same metadata,
// spacing etc...
const unsigned int numberOfInputs = this->GetNumberOfInputs();
RegionType region;
for (unsigned int i=0; i<numberOfInputs; i++)
{
InputImageType *input = static_cast< InputImageType * >(
this->ProcessObject::GetInput(i));
if (!input)
{
itkExceptionMacro(<< "Input " << i << " not set!");
}
if (i==0)
{
region = input->GetLargestPossibleRegion();
}
else if (input->GetLargestPossibleRegion() != region)
{
itkExceptionMacro(<< "All Inputs must have the same dimensions.");
}
}
}
//----------------------------------------------------------------------------
template< class TInputImage >
void
ImageToVectorImageFilter< TInputImage >
::ThreadedGenerateData(const RegionType& outputRegionForThread,
int )
{
typename OutputImageType::Pointer outputImage =
static_cast< OutputImageType * >(this->ProcessObject::GetOutput(0));
ImageRegionIterator< OutputImageType > oit(outputImage, outputRegionForThread);
oit.GoToBegin();
typedef ImageRegionConstIterator< InputImageType > InputIteratorType;
std::vector< InputIteratorType * > inputItContainer;
for( unsigned int i = 0; i< this->GetNumberOfInputs(); i++ )
{
typename InputImageType::Pointer inputImagePointer =
static_cast< InputImageType * >(this->ProcessObject::GetInput(i));
InputIteratorType *iit = new InputIteratorType(
inputImagePointer, outputRegionForThread );
iit->GoToBegin();
inputItContainer.push_back(iit);
}
typename OutputImageType::PixelType pix(this->GetNumberOfInputs());
while( !oit.IsAtEnd() )
{
for( unsigned int i = 0; i< this->GetNumberOfInputs(); i++ )
{
pix[i] = inputItContainer[i]->Get();
++(*inputItContainer[i]);
}
oit.Set(pix);
++oit;
}
for( unsigned int i = 0; i< this->GetNumberOfInputs(); i++ )
{
delete inputItContainer[i];
}
}
} // end namespace itk
#endif
|