ITK
4.2.0
Insight Segmentation and Registration Toolkit
|
#include <itkWarpVectorImageFilter.h>
Static Public Member Functions | |
static Pointer | New () |
Static Public Attributes | |
static const unsigned int | ImageDimension = TOutputImage::ImageDimension |
static const unsigned int | PixelDimension = PixelType::Dimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
static const unsigned int | InputImageDimension = TInputImage::ImageDimension |
static const unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageSource< TOutputImage > |
Private Member Functions | |
void | operator= (const Self &) |
WarpVectorImageFilter (const Self &) |
Private Attributes | |
PixelType | m_EdgePaddingValue |
InterpolatorPointer | m_Interpolator |
DirectionType | m_OutputDirection |
PointType | m_OutputOrigin |
SpacingType | m_OutputSpacing |
Additional Inherited Members | |
Protected Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(OutputImageDimension), itkGetStaticConstMacro(InputImageDimension) > | InputToOutputRegionCopierType |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(InputImageDimension), itkGetStaticConstMacro(OutputImageDimension) > | OutputToInputRegionCopierType |
Warps an image using an input displacement field.
WarpVectorImageFilter warps an existing image with respect to a given displacement field. The input image is expected to have vector-like pixel types.
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:
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 direction 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.
Definition at line 92 of file itkWarpVectorImageFilter.h.
typedef SmartPointer< const Self > itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::ConstPointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 100 of file itkWarpVectorImageFilter.h.
typedef double itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::CoordRepType |
Interpolator typedef support.
Definition at line 144 of file itkWarpVectorImageFilter.h.
typedef VectorLinearInterpolateImageFunction< InputImageType, CoordRepType > itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::DefaultInterpolatorType |
Definition at line 148 of file itkWarpVectorImageFilter.h.
typedef TOutputImage::DirectionType itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::DirectionType |
Type for representing the direction of the output image
Definition at line 154 of file itkWarpVectorImageFilter.h.
typedef DisplacementFieldType::Pointer itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::DisplacementFieldPointer |
Definition at line 134 of file itkWarpVectorImageFilter.h.
typedef TDisplacementField itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::DisplacementFieldType |
Displacement field typedef support.
Definition at line 133 of file itkWarpVectorImageFilter.h.
typedef DisplacementFieldType::PixelType itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::DisplacementType |
Definition at line 135 of file itkWarpVectorImageFilter.h.
typedef OutputImageType::IndexType itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::IndexType |
Definition at line 118 of file itkWarpVectorImageFilter.h.
typedef Superclass::InputImageConstPointer itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::InputImageConstPointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 116 of file itkWarpVectorImageFilter.h.
typedef Superclass::InputImagePointer itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::InputImagePointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 113 of file itkWarpVectorImageFilter.h.
typedef Superclass::InputImageType itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::InputImageType |
Inherit some types from the superclass.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 112 of file itkWarpVectorImageFilter.h.
typedef InterpolatorType::Pointer itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::InterpolatorPointer |
Definition at line 146 of file itkWarpVectorImageFilter.h.
typedef VectorInterpolateImageFunction< InputImageType, CoordRepType > itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::InterpolatorType |
Definition at line 145 of file itkWarpVectorImageFilter.h.
typedef Superclass::OutputImagePointer itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::OutputImagePointer |
Reimplemented from itk::ImageSource< TOutputImage >.
Definition at line 115 of file itkWarpVectorImageFilter.h.
typedef TOutputImage::RegionType itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::OutputImageRegionType |
Typedef to describe the output image region type.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 106 of file itkWarpVectorImageFilter.h.
typedef Superclass::OutputImageType itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::OutputImageType |
Some convenient typedefs.
Reimplemented from itk::ImageSource< TOutputImage >.
Definition at line 114 of file itkWarpVectorImageFilter.h.
typedef OutputImageType::PixelType itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::PixelType |
Definition at line 120 of file itkWarpVectorImageFilter.h.
typedef SmartPointer< Self > itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::Pointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 99 of file itkWarpVectorImageFilter.h.
typedef Point< CoordRepType, itkGetStaticConstMacro(ImageDimension) > itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::PointType |
Point type
Definition at line 151 of file itkWarpVectorImageFilter.h.
typedef WarpVectorImageFilter itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::Self |
Standard class typedefs.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 97 of file itkWarpVectorImageFilter.h.
typedef OutputImageType::SizeType itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::SizeType |
Definition at line 119 of file itkWarpVectorImageFilter.h.
typedef OutputImageType::SpacingType itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::SpacingType |
Definition at line 121 of file itkWarpVectorImageFilter.h.
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::Superclass |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 98 of file itkWarpVectorImageFilter.h.
typedef OutputImageType::PixelType::ValueType itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::ValueType |
Definition at line 122 of file itkWarpVectorImageFilter.h.
|
protected |
End concept checking
|
inlineprotected |
End concept checking
Definition at line 247 of file itkWarpVectorImageFilter.h.
|
private |
|
virtual |
This method is used to set the state of the filter before multi-threading.
Reimplemented from itk::ImageSource< TOutputImage >.
|
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.
|
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 >.
|
virtual |
WarpVectorImageFilter 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.
DisplacementFieldType* itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::GetDisplacementField | ( | void | ) |
Get a pointer the displacement field.
|
virtual |
Get the edge padding value
|
virtual |
Get a pointer to the interpolator function.
|
virtual |
Run-time type information (and related methods)
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
Set/Get the direction (orientation) of the output image
|
virtual |
Get the output image origin.
|
virtual |
Get the output image spacing.
|
static |
Method for creation through the object factory.
Reimplemented from itk::Object.
|
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 >.
|
protectedvirtual |
End concept checking
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
void itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::SetDisplacementField | ( | const DisplacementFieldType * | field | ) |
Set the displacement field.
void itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::SetDisplacementField | ( | DisplacementFieldType * | field | ) |
Set the displacement field (non const for backward compatibility).
|
virtual |
Set the edge padding value
|
virtual |
Set the interpolator function.
|
virtual |
Set/Get the direction (orientation) of the output image
|
virtual |
Set the output image origin.
|
virtual |
Set the output image origin.
|
virtual |
Set the output image spacing.
|
virtual |
Set the output image spacing.
|
protectedvirtual |
WarpVectorImageFilter is implemented as a multi-threaded filter. As such, it needs to provide and implementation for ThreadedGenerateData().
Reimplemented from itk::ImageSource< TOutputImage >.
itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::typedef | ( | Concept::HasNumericTraits< typename TInputImage::PixelType::ValueType > | ) |
Begin concept checking This class requires InputHasNumericTraitsCheck in the form of ( Concept::HasNumericTraits< typename TInputImage::PixelType::ValueType > )
itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::typedef | ( | Concept::HasNumericTraits< ValueType > | ) |
This class requires OutputHasNumericTraitsCheck in the form of ( Concept::HasNumericTraits< ValueType > )
itk::WarpVectorImageFilter< TInputImage, TOutputImage, TDisplacementField >::typedef | ( | Concept::HasNumericTraits< typename TDisplacementField::PixelType::ValueType > | ) |
This class requires DisplacementFieldHasNumericTraitsCheck in the form of ( Concept::HasNumericTraits< typename TDisplacementField::PixelType::ValueType > )
|
static |
Determine the image dimension.
Definition at line 126 of file itkWarpVectorImageFilter.h.
|
private |
Definition at line 261 of file itkWarpVectorImageFilter.h.
|
private |
Definition at line 266 of file itkWarpVectorImageFilter.h.
|
private |
Definition at line 264 of file itkWarpVectorImageFilter.h.
|
private |
Definition at line 263 of file itkWarpVectorImageFilter.h.
|
private |
Definition at line 262 of file itkWarpVectorImageFilter.h.
|
static |
Dimension of the Vector pixel type.
Definition at line 130 of file itkWarpVectorImageFilter.h.