go home Home | Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Data Structures | File List | Namespace Members | Data Fields | Globals | Related Pages
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | Private Member Functions | Private Attributes
itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage > Class Template Reference

#include <itkMultiResolutionImageRegistrationMethod2.h>

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

Public Types

typedef SmartPointer< const SelfConstPointer
typedef DataObject::Pointer DataObjectPointer
typedef
FixedImageType::ConstPointer 
FixedImageConstPointer
typedef
FixedImagePyramidType::Pointer 
FixedImagePyramidPointer
typedef
MultiResolutionPyramidImageFilter
< FixedImageType,
FixedImageType
FixedImagePyramidType
typedef std::vector
< FixedImageRegionType
FixedImageRegionPyramidType
typedef FixedImageType::RegionType FixedImageRegionType
typedef TFixedImage FixedImageType
typedef InterpolatorType::Pointer InterpolatorPointer
typedef
MetricType::InterpolatorType 
InterpolatorType
typedef MetricType::Pointer MetricPointer
typedef
AdvancedImageToImageMetric
< 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
MultiResolutionImageRegistrationMethod2 
Self
typedef ProcessObject Superclass
typedef
TransformOutputType::ConstPointer 
TransformOutputConstPointer
typedef
TransformOutputType::Pointer 
TransformOutputPointer
typedef DataObjectDecorator
< TransformType
TransformOutputType
typedef TransformType::Pointer TransformPointer
typedef
MetricType::AdvancedTransformType 
TransformType

Public Member Functions

virtual const char * GetClassName () const
virtual unsigned long GetCurrentLevel ()
virtual const FixedImageTypeGetFixedImage ()
virtual FixedImagePyramidTypeGetFixedImagePyramid ()
virtual const
FixedImageRegionType
GetFixedImageRegion ()
virtual const ParametersTypeGetInitialTransformParameters ()
virtual const ParametersTypeGetInitialTransformParametersOfNextLevel ()
virtual InterpolatorTypeGetInterpolator ()
virtual const ParametersTypeGetLastTransformParameters ()
virtual MetricTypeGetMetric ()
virtual const MovingImageTypeGetMovingImage ()
virtual MovingImagePyramidTypeGetMovingImagePyramid ()
unsigned long GetMTime (void) const
virtual unsigned long GetNumberOfLevels ()
virtual OptimizerTypeGetOptimizer ()
const TransformOutputTypeGetOutput (void) const
virtual TransformTypeGetTransform ()
virtual DataObjectPointer MakeOutput (unsigned int idx)
virtual void SetFixedImage (const FixedImageType *_arg)
virtual void SetFixedImagePyramid (FixedImagePyramidType *_arg)
virtual void SetFixedImageRegion (FixedImageRegionType _arg)
virtual void SetInitialTransformParameters (ParametersType _arg)
virtual void SetInitialTransformParametersOfNextLevel (ParametersType _arg)
virtual void SetInterpolator (InterpolatorType *_arg)
virtual void SetMetric (MetricType *_arg)
virtual void SetMovingImage (const MovingImageType *_arg)
virtual void SetMovingImagePyramid (MovingImagePyramidType *_arg)
virtual void SetNumberOfLevels (unsigned long _arg)
virtual void SetOptimizer (OptimizerType *_arg)
virtual void SetTransform (TransformType *_arg)
virtual void StartRegistration (void)
virtual void StopRegistration (void)

Static Public Member Functions

static Pointer New ()

Protected Member Functions

virtual void GenerateData (void)
virtual void Initialize () throw (ExceptionObject)
 MultiResolutionImageRegistrationMethod2 ()
virtual void PreparePyramids (void)
virtual void PrintSelf (std::ostream &os, Indent indent) const
virtual void SetCurrentLevel (unsigned long _arg)
virtual ~MultiResolutionImageRegistrationMethod2 ()

Protected Attributes

ParametersType m_LastTransformParameters
bool m_Stop

Private Member Functions

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

Private Attributes

unsigned long m_CurrentLevel
FixedImageConstPointer m_FixedImage
FixedImagePyramidPointer m_FixedImagePyramid
FixedImageRegionType m_FixedImageRegion
FixedImageRegionPyramidType m_FixedImageRegionPyramid
ParametersType m_InitialTransformParameters
ParametersType m_InitialTransformParametersOfNextLevel
InterpolatorPointer m_Interpolator
MetricPointer m_Metric
MovingImageConstPointer m_MovingImage
MovingImagePyramidPointer m_MovingImagePyramid
unsigned long m_NumberOfLevels
OptimizerType::Pointer m_Optimizer
TransformPointer m_Transform

Detailed Description

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

Base class for multi-resolution image registration methods.

This class is a slight modification of the original ITK class: MultiResolutionImageRegistrationMethod. Compared to that one, some variables are made protected, instead of private. Also, this class makes less assumptions about the image pyramids.

---------------------------

Original ITK documentation:

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.

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 overridden 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 96 of file itkMultiResolutionImageRegistrationMethod2.h.


Member Typedef Documentation

template<typename TFixedImage, typename TMovingImage>
typedef SmartPointer<const Self> itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::ConstPointer
template<typename TFixedImage, typename TMovingImage>
typedef DataObject::Pointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::DataObjectPointer
template<typename TFixedImage, typename TMovingImage>
typedef FixedImageType::ConstPointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::FixedImageConstPointer
template<typename TFixedImage, typename TMovingImage>
typedef FixedImagePyramidType::Pointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::FixedImagePyramidPointer
template<typename TFixedImage, typename TMovingImage>
typedef MultiResolutionPyramidImageFilter< FixedImageType, FixedImageType > itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::FixedImagePyramidType
template<typename TFixedImage, typename TMovingImage>
typedef std::vector<FixedImageRegionType> itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::FixedImageRegionPyramidType
template<typename TFixedImage, typename TMovingImage>
typedef FixedImageType::RegionType itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::FixedImageRegionType
template<typename TFixedImage, typename TMovingImage>
typedef TFixedImage itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::FixedImageType
template<typename TFixedImage, typename TMovingImage>
typedef InterpolatorType::Pointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::InterpolatorPointer
template<typename TFixedImage, typename TMovingImage>
typedef MetricType::InterpolatorType itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::InterpolatorType
template<typename TFixedImage, typename TMovingImage>
typedef MetricType::Pointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::MetricPointer
template<typename TFixedImage, typename TMovingImage>
typedef AdvancedImageToImageMetric< FixedImageType, MovingImageType > itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::MetricType
template<typename TFixedImage, typename TMovingImage>
typedef MovingImageType::ConstPointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::MovingImageConstPointer
template<typename TFixedImage, typename TMovingImage>
typedef MovingImagePyramidType::Pointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::MovingImagePyramidPointer
template<typename TFixedImage, typename TMovingImage>
typedef MultiResolutionPyramidImageFilter< MovingImageType, MovingImageType > itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::MovingImagePyramidType
template<typename TFixedImage, typename TMovingImage>
typedef TMovingImage itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::MovingImageType
template<typename TFixedImage, typename TMovingImage>
typedef SingleValuedNonLinearOptimizer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::OptimizerType
template<typename TFixedImage, typename TMovingImage>
typedef MetricType::TransformParametersType itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::ParametersType
template<typename TFixedImage, typename TMovingImage>
typedef SmartPointer<Self> itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::Pointer
template<typename TFixedImage, typename TMovingImage>
typedef MultiResolutionImageRegistrationMethod2 itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::Self
template<typename TFixedImage, typename TMovingImage>
typedef ProcessObject itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::Superclass
template<typename TFixedImage, typename TMovingImage>
typedef TransformOutputType::ConstPointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::TransformOutputConstPointer
template<typename TFixedImage, typename TMovingImage>
typedef TransformOutputType::Pointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::TransformOutputPointer
template<typename TFixedImage, typename TMovingImage>
typedef DataObjectDecorator< TransformType > itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::TransformOutputType
template<typename TFixedImage, typename TMovingImage>
typedef TransformType::Pointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::TransformPointer
template<typename TFixedImage, typename TMovingImage>
typedef MetricType::AdvancedTransformType itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::TransformType

Constructor & Destructor Documentation

template<typename TFixedImage, typename TMovingImage>
itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::MultiResolutionImageRegistrationMethod2 ( ) [protected]

Constructor.

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

Destructor.

Definition at line 247 of file itkMultiResolutionImageRegistrationMethod2.h.

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

Member Function Documentation

template<typename TFixedImage, typename TMovingImage>
virtual void itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GenerateData ( void  ) [protected, virtual]
template<typename TFixedImage, typename TMovingImage>
virtual const char* itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetClassName ( ) const [virtual]
template<typename TFixedImage, typename TMovingImage>
virtual unsigned long itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetCurrentLevel ( ) [virtual]

Get the current resolution level being processed.

template<typename TFixedImage, typename TMovingImage>
virtual const FixedImageType* itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetFixedImage ( ) [virtual]
template<typename TFixedImage, typename TMovingImage>
virtual FixedImagePyramidType* itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetFixedImagePyramid ( ) [virtual]
template<typename TFixedImage, typename TMovingImage>
virtual const FixedImageRegionType& itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetFixedImageRegion ( ) [virtual]
template<typename TFixedImage, typename TMovingImage>
virtual const ParametersType& itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetInitialTransformParameters ( ) [virtual]
template<typename TFixedImage, typename TMovingImage>
virtual const ParametersType& itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetInitialTransformParametersOfNextLevel ( ) [virtual]
template<typename TFixedImage, typename TMovingImage>
virtual InterpolatorType* itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetInterpolator ( ) [virtual]
template<typename TFixedImage, typename TMovingImage>
virtual const ParametersType& itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetLastTransformParameters ( ) [virtual]
template<typename TFixedImage, typename TMovingImage>
virtual MetricType* itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetMetric ( ) [virtual]
template<typename TFixedImage, typename TMovingImage>
virtual const MovingImageType* itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetMovingImage ( ) [virtual]
template<typename TFixedImage, typename TMovingImage>
virtual MovingImagePyramidType* itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetMovingImagePyramid ( ) [virtual]
template<typename TFixedImage, typename TMovingImage>
unsigned long itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetMTime ( void  ) const
template<typename TFixedImage, typename TMovingImage>
virtual unsigned long itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetNumberOfLevels ( ) [virtual]
template<typename TFixedImage, typename TMovingImage>
virtual OptimizerType* itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetOptimizer ( ) [virtual]
template<typename TFixedImage, typename TMovingImage>
const TransformOutputType* itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetOutput ( void  ) const

Returns the transform resulting from the registration process.

template<typename TFixedImage, typename TMovingImage>
virtual TransformType* itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetTransform ( ) [virtual]
template<typename TFixedImage, typename TMovingImage>
virtual void itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::Initialize ( ) throw (ExceptionObject) [protected, virtual]
template<typename TFixedImage, typename TMovingImage>
virtual DataObjectPointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::MakeOutput ( unsigned int  idx) [virtual]

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

template<typename TFixedImage, typename TMovingImage>
static Pointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::New ( ) [static]
template<typename TFixedImage, typename TMovingImage>
void itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::operator= ( const Self ) [private]
template<typename TFixedImage, typename TMovingImage>
virtual void itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::PreparePyramids ( void  ) [protected, virtual]
template<typename TFixedImage, typename TMovingImage>
virtual void itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const [protected, virtual]
template<typename TFixedImage, typename TMovingImage>
virtual void itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::SetCurrentLevel ( unsigned long  _arg) [protected, virtual]

Set the current level to be processed.

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

Set/Get the Fixed image.

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

Set/Get the Fixed image pyramid.

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

Set/Get the Metric.

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

Set/Get the initial transformation parameters.

template<typename TFixedImage, typename TMovingImage>
virtual void itk::MultiResolutionImageRegistrationMethod2< 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::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::SetInterpolator ( InterpolatorType _arg) [virtual]

Set/Get the Interpolator.

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

Set/Get the Moving image.

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

Set/Get the Moving image pyramid.

template<typename TFixedImage, typename TMovingImage>
virtual void itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::SetNumberOfLevels ( unsigned long  _arg) [virtual]

Set/Get the number of multi-resolution levels.

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

Set/Get the Optimizer.

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

Set/Get the Transform.

template<typename TFixedImage, typename TMovingImage>
virtual void itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::StartRegistration ( void  ) [virtual]

Method that initiates the registration.

template<typename TFixedImage, typename TMovingImage>
virtual void itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::StopRegistration ( void  ) [virtual]

Method to stop the registration.


Field Documentation

template<typename TFixedImage, typename TMovingImage>
unsigned long itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_CurrentLevel [private]
template<typename TFixedImage, typename TMovingImage>
FixedImageConstPointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_FixedImage [private]
template<typename TFixedImage, typename TMovingImage>
FixedImagePyramidPointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_FixedImagePyramid [private]
template<typename TFixedImage, typename TMovingImage>
FixedImageRegionType itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_FixedImageRegion [private]
template<typename TFixedImage, typename TMovingImage>
FixedImageRegionPyramidType itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_FixedImageRegionPyramid [private]
template<typename TFixedImage, typename TMovingImage>
ParametersType itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_InitialTransformParameters [private]
template<typename TFixedImage, typename TMovingImage>
ParametersType itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_InitialTransformParametersOfNextLevel [private]
template<typename TFixedImage, typename TMovingImage>
InterpolatorPointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_Interpolator [private]
template<typename TFixedImage, typename TMovingImage>
ParametersType itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_LastTransformParameters [protected]

The last transform parameters. Compared to the ITK class itk::MultiResolutionImageRegistrationMethod these member variables are made protected, so they can be accessed by children classes.

Reimplemented in itk::MultiMetricMultiResolutionImageRegistrationMethod< TFixedImage, TMovingImage >, and itk::MultiMetricMultiResolutionImageRegistrationMethod< RegistrationBase< TElastix >::FixedImageType, RegistrationBase< TElastix >::MovingImageType >.

Definition at line 267 of file itkMultiResolutionImageRegistrationMethod2.h.

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

Member variables.

Definition at line 281 of file itkMultiResolutionImageRegistrationMethod2.h.

template<typename TFixedImage, typename TMovingImage>
MovingImageConstPointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_MovingImage [private]
template<typename TFixedImage, typename TMovingImage>
MovingImagePyramidPointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_MovingImagePyramid [private]
template<typename TFixedImage, typename TMovingImage>
unsigned long itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_NumberOfLevels [private]
template<typename TFixedImage, typename TMovingImage>
OptimizerType::Pointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_Optimizer [private]
template<typename TFixedImage, typename TMovingImage>
bool itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_Stop [protected]
template<typename TFixedImage, typename TMovingImage>
TransformPointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_Transform [private]


Generated on 11-05-2012 for elastix by doxygen 1.7.6.1 elastix logo