ITK  4.0.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Member Functions | Private Member Functions | Private Attributes
itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField > Class Template Reference

Warps an image using an input displacement field. More...

#include <itkWarpImageFilter.h>

Inheritance diagram for itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >:
Collaboration diagram for itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >:

List of all members.

Public Types

typedef SmartPointer< const SelfConstPointer
typedef double CoordRepType
typedef
LinearInterpolateImageFunction
< InputImageType, CoordRepType
DefaultInterpolatorType
typedef TOutputImage::DirectionType DirectionType
typedef
DisplacementFieldType::Pointer 
DisplacementFieldPointer
typedef TDisplacementField DisplacementFieldType
typedef
DisplacementFieldType::PixelType 
DisplacementType
typedef ImageBase
< itkGetStaticConstMacro(ImageDimension) > 
ImageBaseType
typedef OutputImageType::IndexType IndexType
typedef
OutputImageType::IndexValueType 
IndexValueType
typedef
Superclass::InputImageConstPointer 
InputImageConstPointer
typedef
Superclass::InputImagePointer 
InputImagePointer
typedef Superclass::InputImageType InputImageType
typedef InterpolatorType::Pointer InterpolatorPointer
typedef
InterpolateImageFunction
< InputImageType, CoordRepType
InterpolatorType
typedef
Superclass::OutputImagePointer 
OutputImagePointer
typedef TOutputImage::RegionType OutputImageRegionType
typedef Superclass::OutputImageType OutputImageType
typedef OutputImageType::PixelType PixelType
typedef SmartPointer< SelfPointer
typedef Point< CoordRepType,
itkGetStaticConstMacro(ImageDimension) > 
PointType
typedef WarpImageFilter Self
typedef OutputImageType::SizeType SizeType
typedef
OutputImageType::SpacingType 
SpacingType
typedef ImageToImageFilter
< TInputImage, TOutputImage > 
Superclass

Public Member Functions

virtual void AfterThreadedGenerateData ()
virtual void BeforeThreadedGenerateData ()
virtual ::itk::LightObject::Pointer CreateAnother (void) const
virtual void GenerateInputRequestedRegion ()
virtual void GenerateOutputInformation ()
DisplacementFieldTypeGetDisplacementField (void)
virtual PixelType GetEdgePaddingValue () const
virtual InterpolatorTypeGetInterpolator ()
virtual const char * GetNameOfClass () const
virtual const PointTypeGetOutputOrigin ()
virtual const SizeTypeGetOutputSize ()
virtual const SpacingTypeGetOutputSpacing ()
virtual const IndexTypeGetOutputStartIndex ()
void SetDisplacementField (const DisplacementFieldType *field)
virtual void SetEdgePaddingValue (PixelType _arg)
virtual void SetInterpolator (InterpolatorType *_arg)
void SetOutputParametersFromImage (const ImageBaseType *image)
virtual void SetOutputSize (SizeType _arg)
virtual void SetOutputStartIndex (IndexType _arg)
 typedef (Concept::HasNumericTraits< typename TDisplacementField::PixelType::ValueType >) DisplacementFieldHasNumericTraitsCheck
 typedef (Concept::SameDimension< ImageDimension, InputImageDimension >) SameDimensionCheck1
 typedef (Concept::HasNumericTraits< typename TInputImage::PixelType >) InputHasNumericTraitsCheck
 typedef (Concept::SameDimension< ImageDimension, DisplacementFieldDimension >) SameDimensionCheck2
virtual void SetOutputSpacing (SpacingType _arg)
virtual void SetOutputSpacing (const double *values)
virtual void SetOutputOrigin (PointType _arg)
virtual void SetOutputOrigin (const double *values)
virtual void SetOutputDirection (DirectionType _arg)
virtual const DirectionTypeGetOutputDirection ()

Static Public Member Functions

static Pointer New ()

Static Public Attributes

static const unsigned int DisplacementFieldDimension = TDisplacementField::ImageDimension
static const unsigned int ImageDimension = TOutputImage::ImageDimension
static const unsigned int InputImageDimension = TInputImage::ImageDimension

Protected Member Functions

void PrintSelf (std::ostream &os, Indent indent) const
void ThreadedGenerateData (const OutputImageRegionType &outputRegionForThread, ThreadIdType threadId)
virtual void VerifyInputInformation ()
 WarpImageFilter ()

Private Member Functions

DisplacementType EvaluateDisplacementAtPhysicalPoint (const PointType &p)
void operator= (const Self &)
 WarpImageFilter (const Self &)

Private Attributes

bool m_DefFieldSizeSame
PixelType m_EdgePaddingValue
IndexType m_EndIndex
InterpolatorPointer m_Interpolator
DirectionType m_OutputDirection
PointType m_OutputOrigin
SizeType m_OutputSize
SpacingType m_OutputSpacing
IndexType m_OutputStartIndex
IndexType m_StartIndex

Detailed Description

template<class TInputImage, class TOutputImage, class TDisplacementField>
class itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >

Warps an image using an input displacement field.

WarpImageFilter warps an existing image with respect to a given displacement field.

A displacement field is represented as a image whose pixel type is some vector type with at least N elements, where N is the dimension of the input image. The vector type must support element access via operator [].

The output image is produced by inverse mapping: the output pixels are mapped back onto the input image. This scheme avoids the creation of any holes and overlaps in the output image.

Each vector in the displacement field represent the distance between a geometric point in the input space and a point in the output space such that:

\[ p_{in} = p_{out} + d \]

Typically the mapped position does not correspond to an integer pixel position in the input image. Interpolation via an image function is used to compute values at non-integer positions. The default interpolation typed used is the LinearInterpolateImageFunction. The user can specify a particular interpolation function via SetInterpolator(). Note that the input interpolator must derive from base class InterpolateImageFunction.

Position mapped to outside of the input image buffer are assigned a edge padding value.

The LargetPossibleRegion for the output is inherited from the input displacement field. The output image spacing, origin and orientation may be set via SetOutputSpacing, SetOutputOrigin and SetOutputDirection. The default are respectively a vector of 1's, a vector of 0's and an identity matrix.

This class is templated over the type of the input image, the type of the output image and the type of the displacement field.

The input image is set via SetInput. The input displacement field is set via SetDisplacementField.

This filter is implemented as a multithreaded filter.

Warning:
This filter assumes that the input type, output type and displacement field type all have the same number of dimensions.
Wiki Examples:

Definition at line 88 of file itkWarpImageFilter.h.


Member Typedef Documentation

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef SmartPointer< const Self > itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::ConstPointer

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 96 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef double itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::CoordRepType

Interpolator typedef support.

Definition at line 142 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef LinearInterpolateImageFunction< InputImageType, CoordRepType > itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::DefaultInterpolatorType

Definition at line 146 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef TOutputImage::DirectionType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::DirectionType

Type for representing the direction of the output image

Definition at line 152 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef DisplacementFieldType::Pointer itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::DisplacementFieldPointer

Definition at line 132 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef TDisplacementField itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::DisplacementFieldType

Displacement field typedef support.

Definition at line 131 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef DisplacementFieldType::PixelType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::DisplacementType

Definition at line 133 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef ImageBase< itkGetStaticConstMacro(ImageDimension) > itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::ImageBaseType

typedef for base image type at the current ImageDimension

Definition at line 128 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef OutputImageType::IndexType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::IndexType

Definition at line 113 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef OutputImageType::IndexValueType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::IndexValueType

Definition at line 114 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef Superclass::InputImageConstPointer itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::InputImageConstPointer

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 112 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef Superclass::InputImagePointer itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::InputImagePointer

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 109 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef Superclass::InputImageType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::InputImageType

Inherit some types from the superclass.

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 108 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef InterpolatorType::Pointer itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::InterpolatorPointer

Definition at line 144 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef InterpolateImageFunction< InputImageType, CoordRepType > itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::InterpolatorType

Definition at line 143 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef Superclass::OutputImagePointer itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::OutputImagePointer

Reimplemented from itk::ImageSource< TOutputImage >.

Definition at line 111 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef TOutputImage::RegionType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::OutputImageRegionType

Typedef to describe the output image region type.

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 102 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef Superclass::OutputImageType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::OutputImageType

Some convenient typedefs.

Reimplemented from itk::ImageSource< TOutputImage >.

Definition at line 110 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef OutputImageType::PixelType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::PixelType

Definition at line 116 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef SmartPointer< Self > itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::Pointer

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 95 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef Point< CoordRepType, itkGetStaticConstMacro(ImageDimension) > itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::PointType

Point type

Definition at line 149 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef WarpImageFilter itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::Self

Standard class typedefs.

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 93 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef OutputImageType::SizeType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::SizeType

Definition at line 115 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef OutputImageType::SpacingType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::SpacingType

Definition at line 117 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::Superclass

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 94 of file itkWarpImageFilter.h.


Constructor & Destructor Documentation

template<class TInputImage , class TOutputImage , class TDisplacementField >
itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::WarpImageFilter ( ) [protected]

End concept checking

template<class TInputImage , class TOutputImage , class TDisplacementField >
itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::WarpImageFilter ( const Self ) [private]

Member Function Documentation

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::AfterThreadedGenerateData ( ) [virtual]

This method is used to set the state of the filter after multi-threading.

Reimplemented from itk::ImageSource< TOutputImage >.

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::BeforeThreadedGenerateData ( ) [virtual]

This method is used to set the state of the filter before multi-threading.

Reimplemented from itk::ImageSource< TOutputImage >.

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual::itk::LightObject::Pointer itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::CreateAnother ( void  ) const [virtual]

Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.

Reimplemented from itk::Object.

template<class TInputImage , class TOutputImage , class TDisplacementField >
DisplacementType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::EvaluateDisplacementAtPhysicalPoint ( const PointType p) [private]

This function should be in an interpolator but none of the ITK interpolators at this point handle edge conditions properly

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::GenerateInputRequestedRegion ( ) [virtual]

It is difficult to compute in advance the input image region required to compute the requested output region. Thus the safest thing to do is to request for the whole input image.

For the displacement field, the input requested region set to be the same as that of the output requested region.

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::GenerateOutputInformation ( ) [virtual]

WarpImageFilter produces an image which is a different size than its input image. As such, it needs to provide an implemenation for GenerateOutputInformation() which set the output information according the OutputSpacing, OutputOrigin and the displacement field's LargestPossibleRegion.

Reimplemented from itk::ProcessObject.

template<class TInputImage , class TOutputImage , class TDisplacementField >
DisplacementFieldType* itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::GetDisplacementField ( void  )

Get a pointer the displacement field.

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual PixelType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::GetEdgePaddingValue ( ) const [virtual]

Get the edge padding value

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual InterpolatorType* itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::GetInterpolator ( ) [virtual]

Get a pointer to the interpolator function.

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual const char* itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::GetNameOfClass ( ) const [virtual]

Run-time type information (and related methods)

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual const DirectionType& itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::GetOutputDirection ( ) [virtual]

Set/Get the direction (orientation) of the output image

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual const PointType& itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::GetOutputOrigin ( ) [virtual]

Get the output image origin.

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual const SizeType& itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::GetOutputSize ( ) [virtual]

Get the size of the output image.

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual const SpacingType& itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::GetOutputSpacing ( ) [virtual]

Get the output image spacing.

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual const IndexType& itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::GetOutputStartIndex ( ) [virtual]

Get the start index of the output largest possible region.

template<class TInputImage , class TOutputImage , class TDisplacementField >
static Pointer itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::New ( ) [static]

Method for creation through the object factory.

Reimplemented from itk::Object.

template<class TInputImage , class TOutputImage , class TDisplacementField >
void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::operator= ( const Self ) [private]

PushBackInput(), PushFronInput() in the public section force the input to be the type expected by an ImageToImageFilter. However, these methods end of "hiding" the versions from the superclass (ProcessObject) whose arguments are DataObjects. Here, we re-expose the versions from ProcessObject to avoid warnings about hiding methods from the superclass.

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

template<class TInputImage , class TOutputImage , class TDisplacementField >
void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const [protected, virtual]

Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

template<class TInputImage , class TOutputImage , class TDisplacementField >
void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::SetDisplacementField ( const DisplacementFieldType field)

Set the displacement field.

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::SetEdgePaddingValue ( PixelType  _arg) [virtual]

Set the edge padding value

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::SetInterpolator ( InterpolatorType _arg) [virtual]

Set the interpolator function.

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::SetOutputDirection ( DirectionType  _arg) [virtual]

Set/Get the direction (orientation) of the output image

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::SetOutputOrigin ( PointType  _arg) [virtual]

Set the output image origin.

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::SetOutputOrigin ( const double *  values) [virtual]

Set the output image origin.

template<class TInputImage , class TOutputImage , class TDisplacementField >
void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::SetOutputParametersFromImage ( const ImageBaseType image)

Helper method to set the output parameters based on this image

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::SetOutputSize ( SizeType  _arg) [virtual]

Set the size of the output image.

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::SetOutputSpacing ( SpacingType  _arg) [virtual]

Set the output image spacing.

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::SetOutputSpacing ( const double *  values) [virtual]

Set the output image spacing.

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::SetOutputStartIndex ( IndexType  _arg) [virtual]

Set the start index of the output largest possible region. The default is an index of all zeros.

template<class TInputImage , class TOutputImage , class TDisplacementField >
void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::ThreadedGenerateData ( const OutputImageRegionType outputRegionForThread,
ThreadIdType  threadId 
) [protected, virtual]

WarpImageFilter is implemented as a multi-threaded filter. As such, it needs to provide and implementation for ThreadedGenerateData().

Reimplemented from itk::ImageSource< TOutputImage >.

template<class TInputImage , class TOutputImage , class TDisplacementField >
itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::typedef ( Concept::SameDimension< ImageDimension, DisplacementFieldDimension )

This class requires SameDimensionCheck2 in the form of ( Concept::SameDimension< ImageDimension, DisplacementFieldDimension > )

template<class TInputImage , class TOutputImage , class TDisplacementField >
itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::typedef ( Concept::HasNumericTraits< typename TDisplacementField::PixelType::ValueType >  )

This class requires DisplacementFieldHasNumericTraitsCheck in the form of ( Concept::HasNumericTraits< typename TDisplacementField::PixelType::ValueType > )

template<class TInputImage , class TOutputImage , class TDisplacementField >
itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::typedef ( Concept::HasNumericTraits< typename TInputImage::PixelType >  )

This class requires InputHasNumericTraitsCheck in the form of ( Concept::HasNumericTraits< typename TInputImage::PixelType > )

template<class TInputImage , class TOutputImage , class TDisplacementField >
itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::typedef ( Concept::SameDimension< ImageDimension, InputImageDimension )

Begin concept checking This class requires SameDimensionCheck1 in the form of ( Concept::SameDimension< ImageDimension, InputImageDimension > )

template<class TInputImage , class TOutputImage , class TDisplacementField >
virtual void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::VerifyInputInformation ( ) [inline, protected, virtual]

Override VeriyInputInformation() since this filter's inputs do not need to occoupy the same physical space.

See also:
ProcessObject::VerifyInputInformation

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 273 of file itkWarpImageFilter.h.


Member Data Documentation

template<class TInputImage , class TOutputImage , class TDisplacementField >
const unsigned int itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::DisplacementFieldDimension = TDisplacementField::ImageDimension [static]

Definition at line 125 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
const unsigned int itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::ImageDimension = TOutputImage::ImageDimension [static]

Determine the image dimension.

Definition at line 121 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
const unsigned int itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::InputImageDimension = TInputImage::ImageDimension [static]

ImageDimension constants

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 123 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
bool itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::m_DefFieldSizeSame [private]

Definition at line 292 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
PixelType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::m_EdgePaddingValue [private]

Definition at line 284 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
IndexType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::m_EndIndex [private]

Definition at line 294 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
InterpolatorPointer itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::m_Interpolator [private]

Definition at line 289 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
DirectionType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::m_OutputDirection [private]

Definition at line 287 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
PointType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::m_OutputOrigin [private]

Definition at line 286 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
SizeType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::m_OutputSize [private]

Definition at line 290 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
SpacingType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::m_OutputSpacing [private]

Definition at line 285 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
IndexType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::m_OutputStartIndex [private]

Definition at line 291 of file itkWarpImageFilter.h.

template<class TInputImage , class TOutputImage , class TDisplacementField >
IndexType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::m_StartIndex [private]

Definition at line 294 of file itkWarpImageFilter.h.


The documentation for this class was generated from the following file: