ITK
4.13.0
Insight Segmentation and Registration Toolkit
|
#include <itkWarpImageFilter.h>
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:
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.
Definition at line 88 of file itkWarpImageFilter.h.
Public Types | |
typedef SmartPointer< const Self > | ConstPointer |
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::InternalPixelType | PixelComponentType |
typedef OutputImageType::PixelType | PixelType |
typedef SmartPointer< Self > | Pointer |
typedef Point< CoordRepType, itkGetStaticConstMacro(ImageDimension) > | PointType |
typedef WarpImageFilter | Self |
typedef OutputImageType::SizeType | SizeType |
typedef OutputImageType::SpacingType | SpacingType |
typedef ImageToImageFilter < TInputImage, TOutputImage > | Superclass |
Public Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
typedef SmartPointer< const Self > | ConstPointer |
typedef InputImageType::ConstPointer | InputImageConstPointer |
typedef InputImageType::PixelType | InputImagePixelType |
typedef InputImageType::Pointer | InputImagePointer |
typedef InputImageType::RegionType | InputImageRegionType |
typedef TInputImage | InputImageType |
typedef Superclass::OutputImagePixelType | OutputImagePixelType |
typedef Superclass::OutputImageRegionType | OutputImageRegionType |
typedef SmartPointer< Self > | Pointer |
typedef ImageToImageFilter | Self |
typedef ImageSource< TOutputImage > | Superclass |
Public Types inherited from itk::ImageSource< TOutputImage > | |
typedef SmartPointer< const Self > | ConstPointer |
typedef Superclass::DataObjectIdentifierType | DataObjectIdentifierType |
typedef DataObject::Pointer | DataObjectPointer |
typedef Superclass::DataObjectPointerArraySizeType | DataObjectPointerArraySizeType |
typedef OutputImageType::PixelType | OutputImagePixelType |
typedef OutputImageType::Pointer | OutputImagePointer |
typedef OutputImageType::RegionType | OutputImageRegionType |
typedef TOutputImage | OutputImageType |
typedef SmartPointer< Self > | Pointer |
typedef ImageSource | Self |
typedef ProcessObject | Superclass |
Public Types inherited from itk::ProcessObject | |
typedef SmartPointer< const Self > | ConstPointer |
typedef DataObject::DataObjectIdentifierType | DataObjectIdentifierType |
typedef DataObject::Pointer | DataObjectPointer |
typedef std::vector < DataObjectPointer > | DataObjectPointerArray |
typedef DataObjectPointerArray::size_type | DataObjectPointerArraySizeType |
typedef MultiThreader | MultiThreaderType |
typedef std::vector < DataObjectIdentifierType > | NameArray |
typedef SmartPointer< Self > | Pointer |
typedef ProcessObject | Self |
typedef Object | Superclass |
Public Types inherited from itk::Object | |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef Object | Self |
typedef LightObject | Superclass |
Public Types inherited from itk::LightObject | |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef LightObject | Self |
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from itk::Object | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool flag) |
Static Public Member Functions inherited from itk::LightObject | |
static void | BreakOnError () |
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 |
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 > | |
static const unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Protected Attributes | |
bool | m_DefFieldSameInformation |
IndexType | m_EndIndex |
IndexType | m_StartIndex |
Protected Attributes inherited from itk::ProcessObject | |
TimeStamp | m_OutputInformationMTime |
bool | m_Updating |
Protected Attributes inherited from itk::LightObject | |
AtomicInt< int > | m_ReferenceCount |
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 |
Static Protected Member Functions inherited from itk::ImageSource< TOutputImage > | |
static const ImageRegionSplitterBase * | GetGlobalDefaultSplitter () |
static ITK_THREAD_RETURN_TYPE | ThreaderCallback (void *arg) |
typedef SmartPointer< const Self > itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::ConstPointer |
Definition at line 96 of file itkWarpImageFilter.h.
typedef double itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::CoordRepType |
Interpolator typedef support.
Definition at line 143 of file itkWarpImageFilter.h.
typedef LinearInterpolateImageFunction< InputImageType, CoordRepType > itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::DefaultInterpolatorType |
Definition at line 147 of file itkWarpImageFilter.h.
typedef TOutputImage::DirectionType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::DirectionType |
Type for representing the direction of the output image
Definition at line 153 of file itkWarpImageFilter.h.
typedef DisplacementFieldType::Pointer itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::DisplacementFieldPointer |
Definition at line 133 of file itkWarpImageFilter.h.
typedef TDisplacementField itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::DisplacementFieldType |
Displacement field typedef support.
Definition at line 132 of file itkWarpImageFilter.h.
typedef DisplacementFieldType::PixelType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::DisplacementType |
Definition at line 134 of file itkWarpImageFilter.h.
typedef ImageBase< itkGetStaticConstMacro(ImageDimension) > itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::ImageBaseType |
typedef for base image type at the current ImageDimension
Definition at line 129 of file itkWarpImageFilter.h.
typedef OutputImageType::IndexType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::IndexType |
Definition at line 113 of file itkWarpImageFilter.h.
typedef OutputImageType::IndexValueType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::IndexValueType |
Definition at line 114 of file itkWarpImageFilter.h.
typedef Superclass::InputImageConstPointer itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::InputImageConstPointer |
Definition at line 112 of file itkWarpImageFilter.h.
typedef Superclass::InputImagePointer itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::InputImagePointer |
Definition at line 109 of file itkWarpImageFilter.h.
typedef Superclass::InputImageType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::InputImageType |
Inherit some types from the superclass.
Definition at line 108 of file itkWarpImageFilter.h.
typedef InterpolatorType::Pointer itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::InterpolatorPointer |
Definition at line 145 of file itkWarpImageFilter.h.
typedef InterpolateImageFunction< InputImageType, CoordRepType > itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::InterpolatorType |
Definition at line 144 of file itkWarpImageFilter.h.
typedef Superclass::OutputImagePointer itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::OutputImagePointer |
Definition at line 111 of file itkWarpImageFilter.h.
typedef TOutputImage::RegionType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::OutputImageRegionType |
Typedef to describe the output image region type.
Definition at line 102 of file itkWarpImageFilter.h.
typedef Superclass::OutputImageType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::OutputImageType |
Definition at line 110 of file itkWarpImageFilter.h.
typedef OutputImageType::InternalPixelType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::PixelComponentType |
Definition at line 117 of file itkWarpImageFilter.h.
typedef OutputImageType::PixelType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::PixelType |
Definition at line 116 of file itkWarpImageFilter.h.
typedef SmartPointer< Self > itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::Pointer |
Definition at line 95 of file itkWarpImageFilter.h.
typedef Point< CoordRepType, itkGetStaticConstMacro(ImageDimension) > itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::PointType |
Point type
Definition at line 150 of file itkWarpImageFilter.h.
typedef WarpImageFilter itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::Self |
Standard class typedefs.
Definition at line 93 of file itkWarpImageFilter.h.
typedef OutputImageType::SizeType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::SizeType |
Definition at line 115 of file itkWarpImageFilter.h.
typedef OutputImageType::SpacingType itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::SpacingType |
Definition at line 118 of file itkWarpImageFilter.h.
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::Superclass |
Definition at line 94 of file itkWarpImageFilter.h.
|
protected |
|
overridevirtual |
This method is used to set the state of the filter after multi-threading.
Reimplemented from itk::ImageSource< TOutputImage >.
|
overridevirtual |
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.
Reimplemented in itk::ContinuousBorderWarpImageFilter< TInputImage, TOutputImage, TDisplacementField >.
|
protected |
This function should be in an interpolator but none of the ITK interpolators at this point handle edge conditions properly
If this method is called in a loop, the EvaluateDisplacementAtPhysicalPoint(const PointType &, const DisplacementFieldType *, DisplacementType &) overload will offer better performance. The displacement field can be obtained using the GetDisplacementField() method
|
protected |
This function should be in an interpolator but none of the ITK interpolators at this point handle edge conditions properly
|
overridevirtual |
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 >.
|
overridevirtual |
WarpImageFilter produces an image which is a different size than its input image. As such, it needs to provide an implementation for GenerateOutputInformation() which set the output information according the OutputSpacing, OutputOrigin and the displacement field's LargestPossibleRegion.
Reimplemented from itk::ProcessObject.
|
virtual |
Get a pointer the displacement field.
|
virtual |
Get the edge padding value
|
virtual |
Get/Set the interpolator function.
|
virtual |
Get/Set the interpolator function.
|
virtual |
Run-time type information (and related methods)
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::ContinuousBorderWarpImageFilter< TInputImage, TOutputImage, TDisplacementField >.
|
virtual |
Set/Get the direction (orientation) of the output image
|
virtual |
Get the output image origin.
|
virtual |
Get the size of the output image.
|
virtual |
Get the output image spacing.
|
virtual |
Get the start index of the output largest possible region.
|
static |
Method for creation through the object factory.
|
overrideprotectedvirtual |
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 >.
|
virtual |
Set the displacement field.
|
virtual |
Set the edge padding value
|
virtual |
Get/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.
void itk::WarpImageFilter< TInputImage, TOutputImage, TDisplacementField >::SetOutputParametersFromImage | ( | const ImageBaseType * | image | ) |
Helper method to set the output parameters based on this image
|
virtual |
Set the size of the output image.
|
virtual |
Set the output image spacing.
|
virtual |
Set the output image spacing.
|
virtual |
Set the start index of the output largest possible region. The default is an index of all zeros.
|
overrideprotectedvirtual |
WarpImageFilter is implemented as a multi-threaded filter. As such, it needs to provide and implementation for ThreadedGenerateData().
Reimplemented from itk::ImageSource< TOutputImage >.
Reimplemented in itk::ContinuousBorderWarpImageFilter< TInputImage, TOutputImage, TDisplacementField >.
|
overrideprotectedvirtual |
Override VeriyInputInformation() since this filter's inputs do not need to occoupy the same physical space. But check the that deformation field has the same number of components as dimensions
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
static |
Definition at line 126 of file itkWarpImageFilter.h.
|
static |
Determine the image dimension.
Definition at line 122 of file itkWarpImageFilter.h.
|
static |
Definition at line 124 of file itkWarpImageFilter.h.
|
protected |
Definition at line 293 of file itkWarpImageFilter.h.
|
private |
Definition at line 298 of file itkWarpImageFilter.h.
|
protected |
Definition at line 295 of file itkWarpImageFilter.h.
|
private |
Definition at line 305 of file itkWarpImageFilter.h.
|
private |
Definition at line 303 of file itkWarpImageFilter.h.
|
private |
Definition at line 302 of file itkWarpImageFilter.h.
|
private |
Definition at line 306 of file itkWarpImageFilter.h.
|
private |
Definition at line 301 of file itkWarpImageFilter.h.
|
private |
Definition at line 307 of file itkWarpImageFilter.h.
|
protected |
Definition at line 295 of file itkWarpImageFilter.h.