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

Interpolate an image from two N-D images. More...

#include <itkInterpolateImageFilter.h>

Inheritance diagram for itk::InterpolateImageFilter< TInputImage, TOutputImage >:
Collaboration diagram for itk::InterpolateImageFilter< TInputImage, TOutputImage >:

List of all members.

Public Types

typedef SmartPointer< const SelfConstPointer
typedef
Superclass::InputImagePointer 
InputImagePointer
typedef Superclass::InputImageType InputImageType
typedef TInputImage::PixelType InputPixelType
typedef Image< InputPixelType,
itkGetStaticConstMacro(IntermediateImageDimension) > 
IntermediateImageType
typedef
InterpolateImageFunction
< IntermediateImageType
InterpolatorType
typedef
Superclass::OutputImagePointer 
OutputImagePointer
typedef
Superclass::OutputImageRegionType 
OutputImageRegionType
typedef Superclass::OutputImageType OutputImageType
typedef SmartPointer< SelfPointer
typedef InterpolateImageFilter Self
typedef ImageToImageFilter
< TInputImage, TOutputImage > 
Superclass

Public Member Functions

void AfterThreadedGenerateData ()
void BeforeThreadedGenerateData ()
virtual ::itk::LightObject::Pointer CreateAnother (void) const
const InputImageTypeGetInput2 ()
virtual InterpolatorTypeGetInterpolator ()
virtual const char * GetNameOfClass () const
void SetInput2 (const InputImageType *image)
virtual void SetInterpolator (InterpolatorType *_arg)
 typedef (Concept::HasNumericTraits< InputPixelType >) InputHasNumericTraitsCheck
void SetInput1 (const InputImageType *image)
const InputImageTypeGetInput1 ()
virtual void SetDistance (double _arg)
virtual double GetDistance () const

Static Public Member Functions

static Pointer New ()

Static Public Attributes

static const unsigned int ImageDimension = TOutputImage::ImageDimension
static const unsigned int IntermediateImageDimension = TOutputImage::ImageDimension + 1

Protected Member Functions

void ThreadedGenerateData (const OutputImageRegionType &outputRegionForThread, ThreadIdType threadId)
 InterpolateImageFilter ()
 ~InterpolateImageFilter ()
void PrintSelf (std::ostream &os, Indent indent) const

Private Member Functions

 InterpolateImageFilter (const Self &)
void operator= (const Self &)

Private Attributes

double m_Distance
IntermediateImageType::Pointer m_IntermediateImage
InterpolatorType::Pointer m_Interpolator

Detailed Description

template<class TInputImage, class TOutputImage>
class itk::InterpolateImageFilter< TInputImage, TOutputImage >

Interpolate an image from two N-D images.

Interpolates an image from two input images of the same type and same dimension (N). In particular, this filter forms an intermediate (N+1)D image by concatenating the two input images and interpolating an image a distance $ d \in [0,1] $ away from the first image.

The interpolation is delegated to a user specified InterpolateImageFunction. By default, linear interpolation is used.

The filter is templated over the input image type and output image type. It assumes that the input and output have the same number of dimensions.

Definition at line 44 of file itkInterpolateImageFilter.h.


Member Typedef Documentation

template<class TInputImage , class TOutputImage >
typedef SmartPointer< const Self > itk::InterpolateImageFilter< TInputImage, TOutputImage >::ConstPointer
template<class TInputImage , class TOutputImage >
typedef Superclass::InputImagePointer itk::InterpolateImageFilter< TInputImage, TOutputImage >::InputImagePointer
template<class TInputImage , class TOutputImage >
typedef Superclass::InputImageType itk::InterpolateImageFilter< TInputImage, TOutputImage >::InputImageType

Inherit typedefs from Superclass

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

Definition at line 58 of file itkInterpolateImageFilter.h.

template<class TInputImage , class TOutputImage >
typedef TInputImage::PixelType itk::InterpolateImageFilter< TInputImage, TOutputImage >::InputPixelType

Interpolator typedef.

Definition at line 75 of file itkInterpolateImageFilter.h.

template<class TInputImage , class TOutputImage >
typedef Image< InputPixelType, itkGetStaticConstMacro(IntermediateImageDimension) > itk::InterpolateImageFilter< TInputImage, TOutputImage >::IntermediateImageType

Definition at line 76 of file itkInterpolateImageFilter.h.

template<class TInputImage , class TOutputImage >
typedef InterpolateImageFunction< IntermediateImageType > itk::InterpolateImageFilter< TInputImage, TOutputImage >::InterpolatorType

Definition at line 77 of file itkInterpolateImageFilter.h.

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

Reimplemented from itk::ImageSource< TOutputImage >.

Definition at line 64 of file itkInterpolateImageFilter.h.

template<class TInputImage , class TOutputImage >
typedef Superclass::OutputImageRegionType itk::InterpolateImageFilter< TInputImage, TOutputImage >::OutputImageRegionType

Superclass typedefs.

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

Definition at line 65 of file itkInterpolateImageFilter.h.

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

Some convenient typedefs.

Reimplemented from itk::ImageSource< TOutputImage >.

Definition at line 63 of file itkInterpolateImageFilter.h.

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

Standard class typedefs.

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

Definition at line 49 of file itkInterpolateImageFilter.h.

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

Constructor & Destructor Documentation

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

End concept checking

template<class TInputImage , class TOutputImage >
itk::InterpolateImageFilter< TInputImage, TOutputImage >::~InterpolateImageFilter ( ) [inline, protected]

End concept checking

Definition at line 119 of file itkInterpolateImageFilter.h.

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

Member Function Documentation

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

This method is used to run after multi-threading.

Reimplemented from itk::ImageSource< TOutputImage >.

template<class TInputImage , class TOutputImage >
void itk::InterpolateImageFilter< TInputImage, TOutputImage >::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 >
virtual::itk::LightObject::Pointer itk::InterpolateImageFilter< TInputImage, TOutputImage >::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 >
virtual double itk::InterpolateImageFilter< TInputImage, TOutputImage >::GetDistance ( ) const [virtual]

Set/Get the distance from the first image from which to generate interpolated image. The default value is 0.5

template<class TInputImage , class TOutputImage >
const InputImageType* itk::InterpolateImageFilter< TInputImage, TOutputImage >::GetInput1 ( ) [inline]

Set/Get the first image

Definition at line 82 of file itkInterpolateImageFilter.h.

template<class TInputImage , class TOutputImage >
const InputImageType* itk::InterpolateImageFilter< TInputImage, TOutputImage >::GetInput2 ( )
template<class TInputImage , class TOutputImage >
virtual InterpolatorType* itk::InterpolateImageFilter< TInputImage, TOutputImage >::GetInterpolator ( ) [virtual]

Get a pointer to the interpolator function.

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

Run-time type information (and related methods).

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

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

Method for creation through the object factory.

Reimplemented from itk::Object.

template<class TInputImage , class TOutputImage >
void itk::InterpolateImageFilter< TInputImage, TOutputImage >::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 >
void itk::InterpolateImageFilter< TInputImage, TOutputImage >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const [protected, virtual]

End concept checking

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

template<class TInputImage , class TOutputImage >
virtual void itk::InterpolateImageFilter< TInputImage, TOutputImage >::SetDistance ( double  _arg) [virtual]

Set/Get the distance from the first image from which to generate interpolated image. The default value is 0.5

template<class TInputImage , class TOutputImage >
void itk::InterpolateImageFilter< TInputImage, TOutputImage >::SetInput1 ( const InputImageType image) [inline]

Set/Get the first image

Definition at line 80 of file itkInterpolateImageFilter.h.

template<class TInputImage , class TOutputImage >
void itk::InterpolateImageFilter< TInputImage, TOutputImage >::SetInput2 ( const InputImageType image)

Set/Get the second image

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

Set the interpolator function

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

InterpolateImageFilter can be implemented as a multithreaded filter.

Reimplemented from itk::ImageSource< TOutputImage >.

template<class TInputImage , class TOutputImage >
itk::InterpolateImageFilter< TInputImage, TOutputImage >::typedef ( Concept::HasNumericTraits< InputPixelType )

Begin concept checking This class requires InputHasNumericTraitsCheck in the form of ( Concept::HasNumericTraits< InputPixelType > )


Member Data Documentation

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

Number of dimensions.

Definition at line 69 of file itkInterpolateImageFilter.h.

template<class TInputImage , class TOutputImage >
const unsigned int itk::InterpolateImageFilter< TInputImage, TOutputImage >::IntermediateImageDimension = TOutputImage::ImageDimension + 1 [static]

Number of dimensions.

Definition at line 71 of file itkInterpolateImageFilter.h.

template<class TInputImage , class TOutputImage >
double itk::InterpolateImageFilter< TInputImage, TOutputImage >::m_Distance [private]

Definition at line 135 of file itkInterpolateImageFilter.h.

template<class TInputImage , class TOutputImage >
IntermediateImageType::Pointer itk::InterpolateImageFilter< TInputImage, TOutputImage >::m_IntermediateImage [private]

Definition at line 133 of file itkInterpolateImageFilter.h.

template<class TInputImage , class TOutputImage >
InterpolatorType::Pointer itk::InterpolateImageFilter< TInputImage, TOutputImage >::m_Interpolator [private]

Definition at line 131 of file itkInterpolateImageFilter.h.


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