Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField > Class Template Reference
[Deformable Registration Methods]

Deformably register two images using a PDE algorithm. More...

#include <itkPDEDeformableRegistrationFilter.h>

Inheritance diagram for itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >:

Inheritance graph
[legend]
Collaboration diagram for itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >:

Collaboration graph
[legend]
List of all members.

Public Types

typedef PDEDeformableRegistrationFilter Self
typedef DenseFiniteDifferenceImageFilter<
TDeformationField, TDeformationField > 
Superclass
typedef SmartPointer< SelfPointer
typedef SmartPointer< const
Self
ConstPointer
typedef TFixedImage FixedImageType
typedef FixedImageType::Pointer FixedImagePointer
typedef FixedImageType::ConstPointer FixedImageConstPointer
typedef TMovingImage MovingImageType
typedef MovingImageType::Pointer MovingImagePointer
typedef MovingImageType::ConstPointer MovingImageConstPointer
typedef TDeformationField DeformationFieldType
typedef DeformationFieldType::Pointer DeformationFieldPointer
typedef Superclass::OutputImageType OutputImageType
typedef Superclass::FiniteDifferenceFunctionType FiniteDifferenceFunctionType
typedef PDEDeformableRegistrationFunction<
FixedImageType, MovingImageType,
DeformationFieldType
PDEDeformableRegistrationFunctionType

Public Member Functions

virtual const char * GetNameOfClass () const
 itkStaticConstMacro (ImageDimension, unsigned int, Superclass::ImageDimension)
void SetFixedImage (const FixedImageType *ptr)
const FixedImageTypeGetFixedImage (void) const
void SetMovingImage (const MovingImageType *ptr)
const MovingImageTypeGetMovingImage (void) const
void SetInitialDeformationField (DeformationFieldType *ptr)
DeformationFieldTypeGetDeformationField ()
virtual std::vector< SmartPointer<
DataObject > >::size_type 
GetNumberOfValidRequiredInputs () const
const double * GetStandardDeviations (void)
const double * GetUpdateFieldStandardDeviations (void)
virtual void StopRegistration ()
virtual void SetSmoothDeformationField (bool _arg)
virtual bool GetSmoothDeformationField ()
virtual void SmoothDeformationFieldOn ()
virtual void SmoothDeformationFieldOff ()
virtual void SetStandardDeviations (double data[])
virtual void SetStandardDeviations (double value)
virtual void SetSmoothUpdateField (bool _arg)
virtual bool GetSmoothUpdateField ()
virtual void SmoothUpdateFieldOn ()
virtual void SmoothUpdateFieldOff ()
virtual void SetUpdateFieldStandardDeviations (double data[])
virtual void SetUpdateFieldStandardDeviations (double value)
virtual void SetMaximumError (double _arg)
virtual double GetMaximumError ()
virtual void SetMaximumKernelWidth (unsigned int _arg)
virtual unsigned int GetMaximumKernelWidth ()

Static Public Member Functions

Pointer New ()

Protected Member Functions

 PDEDeformableRegistrationFilter ()
 ~PDEDeformableRegistrationFilter ()
void PrintSelf (std::ostream &os, Indent indent) const
virtual bool Halt ()
virtual void CopyInputToOutput ()
virtual void InitializeIteration ()
virtual void SmoothDeformationField ()
virtual void SmoothUpdateField ()
virtual void PostProcessOutput ()
virtual void Initialize ()
virtual void GenerateOutputInformation ()
virtual void GenerateInputRequestedRegion ()

Detailed Description

template<class TFixedImage, class TMovingImage, class TDeformationField>
class itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >

Deformably register two images using a PDE algorithm.

PDEDeformableRegistrationFilter is a base case for filter implementing a PDE deformable algorithm that register two images by computing the deformation field which will map a moving image onto a fixed image.

A deformation 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 fixed image. The vector type must support element access via operator []. It is assumed that the vector elements behave like floating point scalars.

This class is templated over the fixed image type, moving image type and the deformation Field type.

The input fixed and moving images are set via methods SetFixedImage and SetMovingImage respectively. An initial deformation field maybe set via SetInitialDeformationField or SetInput. If no initial field is set, a zero field is used as the initial condition.

The output deformation field can be obtained via methods GetOutput or GetDeformationField.

The PDE algorithm is run for a user defined number of iterations. Typically the PDE algorithm requires period Gaussin smoothing of the deformation field to enforce an elastic-like condition. The amount of smoothing is governed by a set of user defined standard deviations (one for each dimension).

In terms of memory, this filter keeps two internal buffers: one for storing the intermediate updates to the field and one for double-buffering when smoothing the deformation field. Both buffers are the same type and size as the output deformation field.

This class make use of the finite difference solver hierarchy. Update for each iteration is computed using a PDEDeformableRegistrationFunction.

Warning:
This filter assumes that the fixed image type, moving image type and deformation field type all have the same number of dimensions.
See also:
PDEDeformableRegistrationFunction.

Definition at line 71 of file itkPDEDeformableRegistrationFilter.h.


Member Typedef Documentation

template<class TFixedImage, class TMovingImage, class TDeformationField>
typedef SmartPointer<const Self> itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::ConstPointer
 

Reimplemented from itk::DenseFiniteDifferenceImageFilter< TDeformationField, TDeformationField >.

Reimplemented in itk::DemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::LevelSetMotionRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, and itk::SymmetricForcesDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >.

Definition at line 81 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
typedef DeformationFieldType::Pointer itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::DeformationFieldPointer
 

Reimplemented in itk::DemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::LevelSetMotionRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, and itk::SymmetricForcesDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >.

Definition at line 102 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
typedef TDeformationField itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::DeformationFieldType
 

Deformation field type.

Reimplemented in itk::DemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::LevelSetMotionRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, and itk::SymmetricForcesDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >.

Definition at line 101 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
typedef Superclass::FiniteDifferenceFunctionType itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::FiniteDifferenceFunctionType
 

FiniteDifferenceFunction type.

Reimplemented from itk::DenseFiniteDifferenceImageFilter< TDeformationField, TDeformationField >.

Reimplemented in itk::DemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::LevelSetMotionRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, and itk::SymmetricForcesDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >.

Definition at line 109 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
typedef FixedImageType::ConstPointer itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::FixedImageConstPointer
 

Definition at line 93 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
typedef FixedImageType::Pointer itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::FixedImagePointer
 

Reimplemented in itk::DemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::LevelSetMotionRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, and itk::SymmetricForcesDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >.

Definition at line 92 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
typedef TFixedImage itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::FixedImageType
 

FixedImage image type.

Reimplemented in itk::DemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::LevelSetMotionRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, and itk::SymmetricForcesDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >.

Definition at line 91 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
typedef MovingImageType::ConstPointer itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::MovingImageConstPointer
 

Definition at line 98 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
typedef MovingImageType::Pointer itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::MovingImagePointer
 

Reimplemented in itk::DemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::LevelSetMotionRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, and itk::SymmetricForcesDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >.

Definition at line 97 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
typedef TMovingImage itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::MovingImageType
 

MovingImage image type.

Reimplemented in itk::DemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::LevelSetMotionRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, and itk::SymmetricForcesDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >.

Definition at line 96 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
typedef Superclass::OutputImageType itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::OutputImageType
 

Types inherithed from the superclass

Reimplemented from itk::DenseFiniteDifferenceImageFilter< TDeformationField, TDeformationField >.

Definition at line 105 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
typedef PDEDeformableRegistrationFunction<FixedImageType,MovingImageType, DeformationFieldType> itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::PDEDeformableRegistrationFunctionType
 

PDEDeformableRegistrationFilterFunction type.

Definition at line 113 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
typedef SmartPointer<Self> itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::Pointer
 

Reimplemented from itk::DenseFiniteDifferenceImageFilter< TDeformationField, TDeformationField >.

Reimplemented in itk::DemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::LevelSetMotionRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, and itk::SymmetricForcesDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >.

Definition at line 80 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
typedef PDEDeformableRegistrationFilter itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::Self
 

Standard class typedefs.

Reimplemented from itk::DenseFiniteDifferenceImageFilter< TDeformationField, TDeformationField >.

Reimplemented in itk::DemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::LevelSetMotionRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, and itk::SymmetricForcesDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >.

Definition at line 77 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
typedef DenseFiniteDifferenceImageFilter< TDeformationField,TDeformationField> itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::Superclass
 

Reimplemented from itk::DenseFiniteDifferenceImageFilter< TDeformationField, TDeformationField >.

Reimplemented in itk::DemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::LevelSetMotionRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, and itk::SymmetricForcesDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >.

Definition at line 79 of file itkPDEDeformableRegistrationFilter.h.


Constructor & Destructor Documentation

template<class TFixedImage, class TMovingImage, class TDeformationField>
itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::PDEDeformableRegistrationFilter  )  [protected]
 

template<class TFixedImage, class TMovingImage, class TDeformationField>
itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::~PDEDeformableRegistrationFilter  )  [inline, protected]
 

Definition at line 210 of file itkPDEDeformableRegistrationFilter.h.


Member Function Documentation

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::CopyInputToOutput  )  [protected, virtual]
 

A simple method to copy the data from the input to the output. If the input does not exist, a zero field is written to the output.

Reimplemented from itk::DenseFiniteDifferenceImageFilter< TDeformationField, TDeformationField >.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::GenerateInputRequestedRegion  )  [protected, virtual]
 

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

For the fixed image and deformation field, the input requested region set to be the same as that of the output requested region.

Reimplemented from itk::FiniteDifferenceImageFilter< TDeformationField, TDeformationField >.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::GenerateOutputInformation  )  [protected, virtual]
 

By default the output deformation field has the same Spacing, Origin and LargestPossibleRegion as the input/initial deformation field. If the initial deformation field is not set, the output information is copied from the fixed image.

Reimplemented from itk::ProcessObject.

template<class TFixedImage, class TMovingImage, class TDeformationField>
DeformationFieldType* itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::GetDeformationField void   )  [inline]
 

Get output deformation field.

Definition at line 136 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
const FixedImageType* itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::GetFixedImage void   )  const
 

Get the fixed image.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual double itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::GetMaximumError  )  [virtual]
 

Set/Get the desired maximum error of the Guassian kernel approximate.

See also:
GaussianOperator.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual unsigned int itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::GetMaximumKernelWidth  )  [virtual]
 

Set/Get the desired limits of the Gaussian kernel width.

See also:
GaussianOperator.

template<class TFixedImage, class TMovingImage, class TDeformationField>
const MovingImageType* itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::GetMovingImage void   )  const
 

Get the moving image.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual const char* itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::GetNameOfClass  )  const [virtual]
 

Run-time type information (and related methods)

Reimplemented from itk::DenseFiniteDifferenceImageFilter< TDeformationField, TDeformationField >.

Reimplemented in itk::DemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::LevelSetMotionRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, and itk::SymmetricForcesDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual std::vector<SmartPointer<DataObject> >::size_type itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::GetNumberOfValidRequiredInputs  )  const [virtual]
 

Get the number of valid inputs. For PDEDeformableRegistration, this checks whether the fixed and moving images have been set. While PDEDeformableRegistration can take a third input as an initial deformation field, this input is not a required input.

Reimplemented from itk::ProcessObject.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual bool itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::GetSmoothDeformationField  )  [virtual]
 

Set/Get whether the deformation field is smoothed (regularized). Smoothing the deformation yields a solution elastic in nature. If SmoothDeformationField is on, then the deformation field is smoothed with a Gaussian whose standard deviations are specified with SetStandardDeviations()

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual bool itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::GetSmoothUpdateField  )  [virtual]
 

Set/Get whether the update field is smoothed (regularized). Smoothing the update field yields a solution viscous in nature. If SmoothUpdateField is on, then the update field is smoothed with a Gaussian whose standard deviations are specified with SetUpdateFieldStandardDeviations()

template<class TFixedImage, class TMovingImage, class TDeformationField>
const double* itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::GetStandardDeviations void   )  [inline]
 

Get the Gaussian smoothing standard deviations use for smoothing the deformation field.

Definition at line 165 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
const double* itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::GetUpdateFieldStandardDeviations void   )  [inline]
 

Get the Gaussian smoothing standard deviations used for smoothing the update field.

Definition at line 186 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual bool itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::Halt  )  [inline, protected, virtual]
 

Supplies the halting criteria for this class of filters. The algorithm will stop after a user-specified number of iterations.

Reimplemented from itk::FiniteDifferenceImageFilter< TDeformationField, TDeformationField >.

Reimplemented in itk::LevelSetMotionRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >.

Definition at line 215 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::Initialize  )  [protected, virtual]
 

This method is called before iterating the solution.

Reimplemented from itk::FiniteDifferenceImageFilter< TDeformationField, TDeformationField >.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::InitializeIteration  )  [protected, virtual]
 

Initialize the state of filter and equation before each iteration. Progress feeback is implemented as part of this method.

Reimplemented from itk::FiniteDifferenceImageFilter< TDeformationField, TDeformationField >.

Reimplemented in itk::DemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::LevelSetMotionRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, and itk::SymmetricForcesDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >.

template<class TFixedImage, class TMovingImage, class TDeformationField>
itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::itkStaticConstMacro ImageDimension  ,
unsigned  int,
Superclass::ImageDimension 
 

Inherit some enums and typedefs from the superclass.

Reimplemented from itk::DenseFiniteDifferenceImageFilter< TDeformationField, TDeformationField >.

template<class TFixedImage, class TMovingImage, class TDeformationField>
Pointer itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::New  )  [static]
 

Method for creation through the object factory.

Reimplemented from itk::Object.

Reimplemented in itk::DemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::LevelSetMotionRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, and itk::SymmetricForcesDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::PostProcessOutput  )  [protected, virtual]
 

This method is called after the solution has been generated. In this case, the filter release the memory of the internal buffers.

Reimplemented from itk::FiniteDifferenceImageFilter< TDeformationField, TDeformationField >.

template<class TFixedImage, class TMovingImage, class TDeformationField>
void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::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::DenseFiniteDifferenceImageFilter< TDeformationField, TDeformationField >.

Reimplemented in itk::DemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, itk::LevelSetMotionRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >, and itk::SymmetricForcesDemonsRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >.

template<class TFixedImage, class TMovingImage, class TDeformationField>
void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::SetFixedImage const FixedImageType ptr  ) 
 

Set the fixed image.

template<class TFixedImage, class TMovingImage, class TDeformationField>
void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::SetInitialDeformationField DeformationFieldType ptr  )  [inline]
 

Set initial deformation field.

Definition at line 132 of file itkPDEDeformableRegistrationFilter.h.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::SetMaximumError double  _arg  )  [virtual]
 

Set/Get the desired maximum error of the Guassian kernel approximate.

See also:
GaussianOperator.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::SetMaximumKernelWidth unsigned int  _arg  )  [virtual]
 

Set/Get the desired limits of the Gaussian kernel width.

See also:
GaussianOperator.

template<class TFixedImage, class TMovingImage, class TDeformationField>
void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::SetMovingImage const MovingImageType ptr  ) 
 

Set the moving image.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::SetSmoothDeformationField bool  _arg  )  [virtual]
 

Set/Get whether the deformation field is smoothed (regularized). Smoothing the deformation yields a solution elastic in nature. If SmoothDeformationField is on, then the deformation field is smoothed with a Gaussian whose standard deviations are specified with SetStandardDeviations()

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::SetSmoothUpdateField bool  _arg  )  [virtual]
 

Set/Get whether the update field is smoothed (regularized). Smoothing the update field yields a solution viscous in nature. If SmoothUpdateField is on, then the update field is smoothed with a Gaussian whose standard deviations are specified with SetUpdateFieldStandardDeviations()

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::SetStandardDeviations double  value  )  [virtual]
 

Set the Gaussian smoothing standard deviations for the deformation field. The values are set with respect to pixel coordinates.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::SetStandardDeviations double  data[]  )  [virtual]
 

Set the Gaussian smoothing standard deviations for the deformation field. The values are set with respect to pixel coordinates.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::SetUpdateFieldStandardDeviations double  value  )  [virtual]
 

Set the Gaussian smoothing standard deviations for the update field. The values are set with respect to pixel coordinates.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::SetUpdateFieldStandardDeviations double  data[]  )  [virtual]
 

Set the Gaussian smoothing standard deviations for the update field. The values are set with respect to pixel coordinates.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::SmoothDeformationField  )  [protected, virtual]
 

Utility to smooth the deformation field (represented in the Output) using a Guassian operator. The amount of smoothing can be specified by setting the StandardDeviations.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::SmoothDeformationFieldOff  )  [virtual]
 

Set/Get whether the deformation field is smoothed (regularized). Smoothing the deformation yields a solution elastic in nature. If SmoothDeformationField is on, then the deformation field is smoothed with a Gaussian whose standard deviations are specified with SetStandardDeviations()

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::SmoothDeformationFieldOn  )  [virtual]
 

Set/Get whether the deformation field is smoothed (regularized). Smoothing the deformation yields a solution elastic in nature. If SmoothDeformationField is on, then the deformation field is smoothed with a Gaussian whose standard deviations are specified with SetStandardDeviations()

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::SmoothUpdateField  )  [protected, virtual]
 

Utility to smooth the UpdateBuffer using a Gaussian operator. The amount of smoothing can be specified by setting the UpdateFieldStandardDeviations.

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::SmoothUpdateFieldOff  )  [virtual]
 

Set/Get whether the update field is smoothed (regularized). Smoothing the update field yields a solution viscous in nature. If SmoothUpdateField is on, then the update field is smoothed with a Gaussian whose standard deviations are specified with SetUpdateFieldStandardDeviations()

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::SmoothUpdateFieldOn  )  [virtual]
 

Set/Get whether the update field is smoothed (regularized). Smoothing the update field yields a solution viscous in nature. If SmoothUpdateField is on, then the update field is smoothed with a Gaussian whose standard deviations are specified with SetUpdateFieldStandardDeviations()

template<class TFixedImage, class TMovingImage, class TDeformationField>
virtual void itk::PDEDeformableRegistrationFilter< TFixedImage, TMovingImage, TDeformationField >::StopRegistration  )  [inline, virtual]
 

Stop the registration after the current iteration.

Definition at line 192 of file itkPDEDeformableRegistrationFilter.h.


The documentation for this class was generated from the following file:
Generated at Thu May 25 02:03:54 2006 for ITK by doxygen 1.3.5 written by Dimitri van Heesch, © 1997-2000