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

Base class for multi-resolution image registration methods. More...

#include <itkMultiResolutionImageRegistrationMethod.h>

Inheritance diagram for itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >:
Collaboration diagram for itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >:

List of all members.

Public Types

typedef SmartPointer< const SelfConstPointer
typedef DataObject::Pointer DataObjectPointer
typedef
ProcessObject::DataObjectPointerArraySizeType 
DataObjectPointerArraySizeType
typedef
FixedImageType::ConstPointer 
FixedImageConstPointer
typedef
FixedImagePyramidType::Pointer 
FixedImagePyramidPointer
typedef
MultiResolutionPyramidImageFilter
< FixedImageType,
FixedImageType
FixedImagePyramidType
typedef FixedImageType::RegionType FixedImageRegionType
typedef TFixedImage FixedImageType
typedef InterpolatorType::Pointer InterpolatorPointer
typedef
MetricType::InterpolatorType 
InterpolatorType
typedef MetricType::Pointer MetricPointer
typedef ImageToImageMetric
< FixedImageType,
MovingImageType
MetricType
typedef
MovingImageType::ConstPointer 
MovingImageConstPointer
typedef
MovingImagePyramidType::Pointer 
MovingImagePyramidPointer
typedef
MultiResolutionPyramidImageFilter
< MovingImageType,
MovingImageType
MovingImagePyramidType
typedef TMovingImage MovingImageType
typedef
SingleValuedNonLinearOptimizer 
OptimizerType
typedef
MetricType::TransformParametersType 
ParametersType
typedef SmartPointer< SelfPointer
typedef
FixedImagePyramidType::ScheduleType 
ScheduleType
typedef
MultiResolutionImageRegistrationMethod 
Self
typedef ProcessObject Superclass
typedef
TransformOutputType::ConstPointer 
TransformOutputConstPointer
typedef
TransformOutputType::Pointer 
TransformOutputPointer
typedef DataObjectDecorator
< TransformType
TransformOutputType
typedef TransformType::Pointer TransformPointer
typedef MetricType::TransformType TransformType

Public Member Functions

virtual ::itk::LightObject::Pointer CreateAnother (void) const
virtual SizeValueType GetCurrentLevel () const
virtual ScheduleType GetFixedImagePyramidSchedule () const
virtual const ParametersTypeGetLastTransformParameters ()
virtual ScheduleType GetMovingImagePyramidSchedule () const
unsigned long GetMTime () const
virtual const char * GetNameOfClass () const
virtual SizeValueType GetNumberOfLevels () const
const TransformOutputTypeGetOutput () const
virtual DataObjectPointer MakeOutput (DataObjectPointerArraySizeType idx)
void SetNumberOfLevels (SizeValueType numberOfLevels)
void SetSchedules (const ScheduleType &fixedSchedule, const ScheduleType &movingSchedule)
void StartRegistration ()
void StopRegistration ()
virtual void SetFixedImage (const FixedImageType *_arg)
virtual const FixedImageTypeGetFixedImage ()
virtual void SetMovingImage (const MovingImageType *_arg)
virtual const MovingImageTypeGetMovingImage ()
virtual void SetOptimizer (OptimizerType *_arg)
virtual OptimizerTypeGetOptimizer ()
virtual void SetMetric (MetricType *_arg)
virtual MetricTypeGetMetric ()
virtual void SetFixedImageRegion (FixedImageRegionType _arg)
virtual const
FixedImageRegionType
GetFixedImageRegion ()
virtual void SetTransform (TransformType *_arg)
virtual TransformTypeGetTransform ()
virtual void SetInterpolator (InterpolatorType *_arg)
virtual InterpolatorTypeGetInterpolator ()
virtual void SetFixedImagePyramid (FixedImagePyramidType *_arg)
virtual FixedImagePyramidTypeGetFixedImagePyramid ()
virtual void SetMovingImagePyramid (MovingImagePyramidType *_arg)
virtual MovingImagePyramidTypeGetMovingImagePyramid ()
virtual void SetInitialTransformParameters (ParametersType _arg)
virtual const ParametersTypeGetInitialTransformParameters ()
virtual void SetInitialTransformParametersOfNextLevel (ParametersType _arg)
virtual const ParametersTypeGetInitialTransformParametersOfNextLevel ()

Static Public Member Functions

static Pointer New ()

Protected Member Functions

void GenerateData ()
void Initialize () throw ( ExceptionObject )
 MultiResolutionImageRegistrationMethod ()
void PreparePyramids (void)
void PrintSelf (std::ostream &os, Indent indent) const
virtual ~MultiResolutionImageRegistrationMethod ()

Private Attributes

SizeValueType m_CurrentLevel
FixedImageConstPointer m_FixedImage
FixedImagePyramidPointer m_FixedImagePyramid
ScheduleType m_FixedImagePyramidSchedule
FixedImageRegionType m_FixedImageRegion
std::vector< FixedImageRegionTypem_FixedImageRegionPyramid
ParametersType m_InitialTransformParameters
ParametersType m_InitialTransformParametersOfNextLevel
InterpolatorPointer m_Interpolator
ParametersType m_LastTransformParameters
MetricPointer m_Metric
MovingImageConstPointer m_MovingImage
MovingImagePyramidPointer m_MovingImagePyramid
ScheduleType m_MovingImagePyramidSchedule
SizeValueType m_NumberOfLevels
bool m_NumberOfLevelsSpecified
OptimizerType::Pointer m_Optimizer
bool m_ScheduleSpecified
bool m_Stop
TransformPointer m_Transform
virtual void SetCurrentLevel (SizeValueType _arg)
 MultiResolutionImageRegistrationMethod (const Self &)
void operator= (const Self &)

Detailed Description

template<typename TFixedImage, typename TMovingImage>
class itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >

Base class for multi-resolution image registration methods.

This class provides a generic interface for multi-resolution registration using components of the registration framework. See documentation for ImageRegistrationMethod for a description of the registration framework components.

The registration process is initiated by method StartRegistration(). The user must set the parameters of each component before calling this method.

The number of resolution level to process can be set via SetNumberOfLevels(). At each resolution level, the user specified registration components are used to register downsampled version of the images by computing the transform parameters that will map one image onto the other image.

A user can specify schedules for the fixed and moving image using SetSchedules() method. However, SetNumberOfLevels() and SetSchedules() should not be used together. An exception will be thrown if that happens.

The downsampled images are provided by user specified MultiResolutionPyramidImageFilters. User must specify the schedule for each pyramid externally prior to calling StartRegistration().

Warning:
If there is discrepancy between the number of level requested and a pyramid schedule. The pyramid schedule will be overriden with a default one.

Before each resolution level an IterationEvent is invoked providing an opportunity for a user interface to change any of the components, change component parameters, or stop the registration.

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

See also:
ImageRegistrationMethod

Definition at line 72 of file itkMultiResolutionImageRegistrationMethod.h.


Member Typedef Documentation

template<typename TFixedImage , typename TMovingImage >
typedef SmartPointer< const Self > itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::ConstPointer

Reimplemented from itk::ProcessObject.

Definition at line 79 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef DataObject::Pointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::DataObjectPointer

Smart Pointer type to a DataObject.

Reimplemented from itk::ProcessObject.

Definition at line 133 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef ProcessObject::DataObjectPointerArraySizeType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::DataObjectPointerArraySizeType

Make a DataObject of the correct type to be used as the specified output.

Reimplemented from itk::ProcessObject.

Definition at line 222 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef FixedImageType::ConstPointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::FixedImageConstPointer

Definition at line 89 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef FixedImagePyramidType::Pointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::FixedImagePyramidPointer

Definition at line 119 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef MultiResolutionPyramidImageFilter< FixedImageType, FixedImageType > itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::FixedImagePyramidType

Type of the Fixed image multiresolution pyramid.

Definition at line 118 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef FixedImageType::RegionType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::FixedImageRegionType

Definition at line 90 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef TFixedImage itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::FixedImageType

Type of the Fixed image.

Definition at line 85 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef InterpolatorType::Pointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::InterpolatorPointer

Definition at line 112 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef MetricType::InterpolatorType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::InterpolatorType

Type of the Interpolator.

Definition at line 111 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef MetricType::Pointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::MetricPointer

Definition at line 98 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef ImageToImageMetric< FixedImageType, MovingImageType > itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::MetricType

Type of the metric.

Definition at line 97 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef MovingImageType::ConstPointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::MovingImageConstPointer

Definition at line 94 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef MovingImagePyramidType::Pointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::MovingImagePyramidPointer

Definition at line 126 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef MultiResolutionPyramidImageFilter< MovingImageType, MovingImageType > itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::MovingImagePyramidType

Type of the moving image multiresolution pyramid.

Definition at line 125 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef TMovingImage itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::MovingImageType

Type of the Moving image.

Definition at line 93 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef SingleValuedNonLinearOptimizer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::OptimizerType

Type of the optimizer.

Definition at line 115 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef MetricType::TransformParametersType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::ParametersType

Type of the Transformation parameters This is the same type used to represent the search space of the optimization algorithm

Definition at line 130 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef SmartPointer< Self > itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::Pointer

Reimplemented from itk::ProcessObject.

Definition at line 78 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef FixedImagePyramidType::ScheduleType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::ScheduleType

Type of pyramid schedule type

Definition at line 122 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef MultiResolutionImageRegistrationMethod itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::Self

Standard class typedefs.

Reimplemented from itk::ProcessObject.

Definition at line 76 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef ProcessObject itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::Superclass

Reimplemented from itk::ProcessObject.

Definition at line 77 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef TransformOutputType::ConstPointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::TransformOutputConstPointer

Definition at line 108 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef TransformOutputType::Pointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::TransformOutputPointer

Definition at line 107 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef DataObjectDecorator< TransformType > itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::TransformOutputType

Type for the output: Using Decorator pattern for enabling the Transform to be passed in the data pipeline

Definition at line 106 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef TransformType::Pointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::TransformPointer

Definition at line 102 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
typedef MetricType::TransformType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::TransformType

Type of the Transform .

Definition at line 101 of file itkMultiResolutionImageRegistrationMethod.h.


Constructor & Destructor Documentation

template<typename TFixedImage , typename TMovingImage >
itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::MultiResolutionImageRegistrationMethod ( ) [protected]
template<typename TFixedImage , typename TMovingImage >
virtual itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::~MultiResolutionImageRegistrationMethod ( ) [inline, protected, virtual]

Definition at line 232 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::MultiResolutionImageRegistrationMethod ( const Self ) [private]

Set the current level to be processed


Member Function Documentation

template<typename TFixedImage , typename TMovingImage >
virtual::itk::LightObject::Pointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::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<typename TFixedImage , typename TMovingImage >
void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GenerateData ( ) [protected, virtual]

Method invoked by the pipeline in order to trigger the computation of the registration.

Reimplemented from itk::ProcessObject.

template<typename TFixedImage , typename TMovingImage >
virtual SizeValueType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetCurrentLevel ( ) const [virtual]

Get the current resolution level being processed.

template<typename TFixedImage , typename TMovingImage >
virtual const FixedImageType* itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetFixedImage ( ) [virtual]

Set/Get the Fixed image.

template<typename TFixedImage , typename TMovingImage >
virtual FixedImagePyramidType* itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetFixedImagePyramid ( ) [virtual]

Set/Get the Fixed image pyramid.

template<typename TFixedImage , typename TMovingImage >
virtual ScheduleType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetFixedImagePyramidSchedule ( ) const [virtual]
template<typename TFixedImage , typename TMovingImage >
virtual const FixedImageRegionType& itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetFixedImageRegion ( ) [virtual]

Set/Get the Metric.

template<typename TFixedImage , typename TMovingImage >
virtual const ParametersType& itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetInitialTransformParameters ( ) [virtual]

Set/Get the initial transformation parameters.

template<typename TFixedImage , typename TMovingImage >
virtual const ParametersType& itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetInitialTransformParametersOfNextLevel ( ) [virtual]

Set/Get the initial transformation parameters of the next resolution level to be processed. The default is the last set of parameters of the last resolution level.

template<typename TFixedImage , typename TMovingImage >
virtual InterpolatorType* itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetInterpolator ( ) [virtual]

Set/Get the Interpolator.

template<typename TFixedImage , typename TMovingImage >
virtual const ParametersType& itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetLastTransformParameters ( ) [virtual]

Get the last transformation parameters visited by the optimizer.

template<typename TFixedImage , typename TMovingImage >
virtual MetricType* itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetMetric ( ) [virtual]

Set/Get the Metric.

template<typename TFixedImage , typename TMovingImage >
virtual const MovingImageType* itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetMovingImage ( ) [virtual]

Set/Get the Moving image.

template<typename TFixedImage , typename TMovingImage >
virtual MovingImagePyramidType* itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetMovingImagePyramid ( ) [virtual]

Set/Get the Moving image pyramid.

template<typename TFixedImage , typename TMovingImage >
virtual ScheduleType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetMovingImagePyramidSchedule ( ) const [virtual]
template<typename TFixedImage , typename TMovingImage >
unsigned long itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetMTime ( ) const [virtual]

Method to return the latest modified time of this object or any of its cached ivars

Reimplemented from itk::Object.

template<typename TFixedImage , typename TMovingImage >
virtual const char* itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetNameOfClass ( ) const [virtual]

Run-time type information (and related methods).

Reimplemented from itk::ProcessObject.

template<typename TFixedImage , typename TMovingImage >
virtual SizeValueType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetNumberOfLevels ( ) const [virtual]
template<typename TFixedImage , typename TMovingImage >
virtual OptimizerType* itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetOptimizer ( ) [virtual]

Set/Get the Optimizer.

template<typename TFixedImage , typename TMovingImage >
const TransformOutputType* itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetOutput ( ) const

Returns the transform resulting from the registration process

template<typename TFixedImage , typename TMovingImage >
virtual TransformType* itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::GetTransform ( ) [virtual]

Set/Get the Transfrom.

template<typename TFixedImage , typename TMovingImage >
void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::Initialize ( ) throw ( ExceptionObject ) [protected]

Initialize by setting the interconnects between the components. This method is executed at every level of the pyramid with the values corresponding to this resolution

template<typename TFixedImage , typename TMovingImage >
virtual DataObjectPointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::MakeOutput ( DataObjectPointerArraySizeType  idx) [virtual]

Make a DataObject of the correct type to used as the specified output. Every ProcessObject subclass must be able to create a DataObject that can be used as a specified output. This method is automatically called when DataObject::DisconnectPipeline() is called. DataObject::DisconnectPipeline, disconnects a data object from being an output of its current source. When the data object is disconnected, the ProcessObject needs to construct a replacement output data object so that the ProcessObject is in a valid state. So DataObject::DisconnectPipeline eventually calls ProcessObject::MakeOutput. Note that MakeOutput always returns a itkSmartPointer to a DataObject. ImageSource and MeshSource override this method to create the correct type of image and mesh respectively. If a filter has multiple outputs of different types, then that filter must provide an implementation of MakeOutput().

Reimplemented from itk::ProcessObject.

template<typename TFixedImage , typename TMovingImage >
static Pointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::New ( ) [static]

Method for creation through the object factory.

Reimplemented from itk::Object.

template<typename TFixedImage , typename TMovingImage >
void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::operator= ( const Self ) [private]

Set the current level to be processed

Reimplemented from itk::ProcessObject.

template<typename TFixedImage , typename TMovingImage >
void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::PreparePyramids ( void  ) [protected]

Compute the size of the fixed region for each level of the pyramid.

template<typename TFixedImage , typename TMovingImage >
void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::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::ProcessObject.

template<typename TFixedImage , typename TMovingImage >
virtual void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::SetCurrentLevel ( SizeValueType  _arg) [protected, virtual]

Set the current level to be processed

template<typename TFixedImage , typename TMovingImage >
virtual void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::SetFixedImage ( const FixedImageType _arg) [virtual]

Set/Get the Fixed image.

template<typename TFixedImage , typename TMovingImage >
virtual void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::SetFixedImagePyramid ( FixedImagePyramidType _arg) [virtual]

Set/Get the Fixed image pyramid.

template<typename TFixedImage , typename TMovingImage >
virtual void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::SetFixedImageRegion ( FixedImageRegionType  _arg) [virtual]

Set/Get the Metric.

template<typename TFixedImage , typename TMovingImage >
virtual void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::SetInitialTransformParameters ( ParametersType  _arg) [virtual]

Set/Get the initial transformation parameters.

template<typename TFixedImage , typename TMovingImage >
virtual void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::SetInitialTransformParametersOfNextLevel ( ParametersType  _arg) [virtual]

Set/Get the initial transformation parameters of the next resolution level to be processed. The default is the last set of parameters of the last resolution level.

template<typename TFixedImage , typename TMovingImage >
virtual void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::SetInterpolator ( InterpolatorType _arg) [virtual]

Set/Get the Interpolator.

template<typename TFixedImage , typename TMovingImage >
virtual void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::SetMetric ( MetricType _arg) [virtual]

Set/Get the Metric.

template<typename TFixedImage , typename TMovingImage >
virtual void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::SetMovingImage ( const MovingImageType _arg) [virtual]

Set/Get the Moving image.

template<typename TFixedImage , typename TMovingImage >
virtual void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::SetMovingImagePyramid ( MovingImagePyramidType _arg) [virtual]

Set/Get the Moving image pyramid.

template<typename TFixedImage , typename TMovingImage >
void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::SetNumberOfLevels ( SizeValueType  numberOfLevels)

Set/Get the number of multi-resolution levels.

template<typename TFixedImage , typename TMovingImage >
virtual void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::SetOptimizer ( OptimizerType _arg) [virtual]

Set/Get the Optimizer.

template<typename TFixedImage , typename TMovingImage >
void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::SetSchedules ( const ScheduleType fixedSchedule,
const ScheduleType movingSchedule 
)

Set/Get the schedules .

template<typename TFixedImage , typename TMovingImage >
virtual void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::SetTransform ( TransformType _arg) [virtual]

Set/Get the Transfrom.

template<typename TFixedImage , typename TMovingImage >
void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::StartRegistration ( )

Method that initiates the registration.

template<typename TFixedImage , typename TMovingImage >
void itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::StopRegistration ( )

Method to stop the registration.


Member Data Documentation

template<typename TFixedImage , typename TMovingImage >
SizeValueType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_CurrentLevel [private]

Definition at line 279 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
FixedImageConstPointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_FixedImage [private]

Definition at line 263 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
FixedImagePyramidPointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_FixedImagePyramid [private]

Definition at line 269 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
ScheduleType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_FixedImagePyramidSchedule [private]

Definition at line 283 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
FixedImageRegionType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_FixedImageRegion [private]

Definition at line 275 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
std::vector< FixedImageRegionType > itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_FixedImageRegionPyramid [private]

Definition at line 276 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
ParametersType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_InitialTransformParameters [private]

Definition at line 271 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
ParametersType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_InitialTransformParametersOfNextLevel [private]

Definition at line 272 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
InterpolatorPointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_Interpolator [private]

Definition at line 266 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
ParametersType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_LastTransformParameters [private]

Definition at line 273 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
MetricPointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_Metric [private]

Definition at line 259 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
MovingImageConstPointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_MovingImage [private]

Definition at line 262 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
MovingImagePyramidPointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_MovingImagePyramid [private]

Definition at line 268 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
ScheduleType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_MovingImagePyramidSchedule [private]

Definition at line 284 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
SizeValueType itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_NumberOfLevels [private]

Definition at line 278 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
bool itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_NumberOfLevelsSpecified [private]

Definition at line 287 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
OptimizerType::Pointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_Optimizer [private]

Definition at line 260 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
bool itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_ScheduleSpecified [private]

Definition at line 286 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
bool itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_Stop [private]

Definition at line 281 of file itkMultiResolutionImageRegistrationMethod.h.

template<typename TFixedImage , typename TMovingImage >
TransformPointer itk::MultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >::m_Transform [private]

Definition at line 265 of file itkMultiResolutionImageRegistrationMethod.h.


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