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
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkVectorResampleImageFilter.h,v $
Language: C++
Date: $Date: 2007-03-03 00:17:37 $
Version: $Revision: 1.11 $
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 __itkVectorResampleImageFilter_h
#define __itkVectorResampleImageFilter_h
#include "itkTransform.h"
#include "itkImageFunction.h"
#include "itkImageRegionIterator.h"
#include "itkImageToImageFilter.h"
#include "itkVectorInterpolateImageFunction.h"
#include "itkFixedArray.h"
#include "itkSize.h"
namespace itk
{
/** \class VectorResampleImageFilter
* \brief Resample an image via a coordinate transform
*
* VectorResampleImageFilter resamples an existing image through some coordinate
* transform, interpolating via some image function. The class is templated
* over the types of the input and output images.
*
* Note that the choice of interpolator function can be important.
* This function is set via SetInterpolator(). The default is
* itk::VectorLinearInterpolateImageFunction<InputImageType, TInterpolatorPrecisionType>, which
* is reasonable for ordinary medical images.
*
* Since this filter produces an image which is a different size than
* its input, it needs to override several of the methods defined
* in ProcessObject in order to properly manage the pipeline execution model.
* In particular, this filter overrides
* ProcessObject::GenerateInputRequestedRegion() and
* ProcessObject::GenerateOutputInformation().
*
* This filter is implemented as a multithreaded filter. It provides a
* ThreadedGenerateData() method for its implementation.
*
* \ingroup GeometricTransforms
*/
template <class TInputImage, class TOutputImage, class TInterpolatorPrecisionType=double>
class ITK_EXPORT VectorResampleImageFilter:
public ImageToImageFilter<TInputImage, TOutputImage>
{
public:
/** Standard class typedefs. */
typedef VectorResampleImageFilter Self;
typedef ImageToImageFilter<TInputImage,TOutputImage> Superclass;
typedef SmartPointer<Self> Pointer;
typedef SmartPointer<const Self> ConstPointer;
typedef TInputImage InputImageType;
typedef TOutputImage OutputImageType;
typedef typename InputImageType::Pointer InputImagePointer;
typedef typename InputImageType::ConstPointer InputImageConstPointer;
typedef typename OutputImageType::Pointer OutputImagePointer;
typedef typename InputImageType::RegionType InputImageRegionType;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(VectorResampleImageFilter, ImageToImageFilter);
/** Number of dimensions. */
itkStaticConstMacro(ImageDimension, unsigned int,
TOutputImage::ImageDimension);
/** Transform typedef.
*
* \todo Check that input and output images have the same number of
* dimensions; this is required by the current implementation of
* AffineTransform. */
typedef Transform<TInterpolatorPrecisionType, itkGetStaticConstMacro(ImageDimension), itkGetStaticConstMacro(ImageDimension)> TransformType;
typedef typename TransformType::ConstPointer TransformPointerType;
/** Interpolator typedef. */
typedef VectorInterpolateImageFunction<InputImageType, TInterpolatorPrecisionType> InterpolatorType;
typedef typename InterpolatorType::Pointer InterpolatorPointerType;
/** Image size typedef. */
typedef Size<itkGetStaticConstMacro(ImageDimension)> SizeType;
/** Image index typedef. */
typedef typename TOutputImage::IndexType IndexType;
/** Image point typedef. */
typedef typename InterpolatorType::PointType PointType;
/** Image pixel value typedef. */
typedef typename TOutputImage::PixelType PixelType;
typedef typename PixelType::ValueType PixelComponentType;
/** Typedef to describe the output image region type. */
typedef typename TOutputImage::RegionType OutputImageRegionType;
/** Image spacing,origin and direction typedef */
typedef typename TOutputImage::SpacingType SpacingType;
typedef typename TOutputImage::PointType OriginPointType;
typedef typename TOutputImage::DirectionType DirectionType;
/** Set the coordinate transformation.
* Set the coordinate transform to use for resampling. Note that this
* must be in index coordinates and is the output-to-input transform,
* NOT the input-to-output transform that you might naively expect.
* The default is itk::AffineTransform<TInterpolatorPrecisionType, ImageDimension>. */
itkSetConstObjectMacro( Transform, TransformType );
/** Get a pointer to the coordinate transform. */
itkGetConstObjectMacro( Transform, TransformType );
/** Set the interpolator function. The default is
* itk::VectorLinearInterpolateImageFunction<InputImageType, TInterpolatorPrecisionType>. */
itkSetObjectMacro( Interpolator, InterpolatorType );
/** Get a pointer to the interpolator function. */
itkGetConstObjectMacro( Interpolator, InterpolatorType );
/** Set the size of the output image. */
itkSetMacro( Size, SizeType );
/** Get the size of the output image. */
itkGetConstReferenceMacro( Size, SizeType );
/** Set the pixel value when a transformed pixel is outside of the
* image. The default default pixel value is 0. */
itkSetMacro(DefaultPixelValue,PixelType);
/** Get the pixel value when a transformed pixel is outside of the image */
itkGetMacro(DefaultPixelValue,PixelType);
/** Set the output image spacing. */
itkSetMacro(OutputSpacing, SpacingType);
virtual void SetOutputSpacing( const double* values);
/** Get the output image spacing. */
itkGetConstReferenceMacro( OutputSpacing, SpacingType );
/** Set the output image origin. */
itkSetMacro(OutputOrigin, PointType);
virtual void SetOutputOrigin( const double* values);
/** Get the output image origin. */
itkGetConstReferenceMacro( OutputOrigin, PointType );
/** Set the output direciton cosine matrix. */
itkSetMacro(OutputDirection, DirectionType);
itkGetConstReferenceMacro(OutputDirection, DirectionType);
/** Set the start index of the output largest possible region.
* The default is an index of all zeros. */
itkSetMacro( OutputStartIndex, IndexType );
/** Get the start index of the output largest possible region. */
itkGetConstReferenceMacro( OutputStartIndex, IndexType );
/** VectorResampleImageFilter produces an image which is a different size
* than its input. As such, it needs to provide an implementation
* for GenerateOutputInformation() in order to inform the pipeline
* execution model. The original documentation of this method is
* below. \sa ProcessObject::GenerateOutputInformaton() */
virtual void GenerateOutputInformation();
/** VectorResampleImageFilter needs a different input requested region than
* the output requested region. As such, VectorResampleImageFilter needs
* to provide an implementation for GenerateInputRequestedRegion()
* in order to inform the pipeline execution model.
* \sa ProcessObject::GenerateInputRequestedRegion() */
virtual void GenerateInputRequestedRegion();
/** This method is used to set the state of the filter before
* multi-threading. */
virtual void BeforeThreadedGenerateData();
/** This method is used to set the state of the filter after
* multi-threading. */
virtual void AfterThreadedGenerateData();
/** Method Compute the Modified Time based on changed to the components. */
unsigned long GetMTime( void ) const;
#ifdef ITK_USE_CONCEPT_CHECKING
/** Begin concept checking */
itkConceptMacro(InputHasNumericTraitsCheck,
(Concept::HasNumericTraits<typename TInputImage::PixelType::ValueType>));
itkConceptMacro(OutputHasNumericTraitsCheck,
(Concept::HasNumericTraits<PixelComponentType>));
/** End concept checking */
#endif
protected:
VectorResampleImageFilter();
~VectorResampleImageFilter() {};
void PrintSelf(std::ostream& os, Indent indent) const;
/** VectorResampleImageFilter can be implemented as a multithreaded filter. Therefore,
* this implementation provides a ThreadedGenerateData() routine which
* is called for each processing thread. The output image data is allocated
* automatically by the superclass prior to calling ThreadedGenerateData().
* ThreadedGenerateData can only write to the portion of the output image
* specified by the parameter "outputRegionForThread"
* \sa ImageToImageFilter::ThreadedGenerateData(),
* ImageToImageFilter::GenerateData() */
void ThreadedGenerateData(const OutputImageRegionType& outputRegionForThread,
int threadId );
private:
VectorResampleImageFilter(const Self&); //purposely not implemented
void operator=(const Self&); //purposely not implemented
SizeType m_Size; // Size of the output image
TransformPointerType m_Transform; // Coordinate transform to use
InterpolatorPointerType m_Interpolator;
// Image function for interpolation
PixelType m_DefaultPixelValue;
// default pixel value if the point
// is outside the image
SpacingType m_OutputSpacing; // output image spacing
PointType m_OutputOrigin; // output image origin
DirectionType m_OutputDirection; // output image direction cosines
IndexType m_OutputStartIndex; // output start index
};
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
#include "itkVectorResampleImageFilter.txx"
#endif
#endif
|