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>

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

+ Inheritance diagram for itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >:

Public Types

typedef SmartPointer< const SelfConstPointer
 
typedef DataObject::Pointer DataObjectPointer
 
typedef FixedImageType::ConstPointer FixedImageConstPointer
 
typedef FixedImagePyramidType::Pointer FixedImagePyramidPointer
 
typedef MultiResolutionPyramidImageFilter< FixedImageType, FixedImageTypeFixedImagePyramidType
 
typedef std::vector< FixedImageRegionTypeFixedImageRegionPyramidType
 
typedef FixedImageType::RegionType FixedImageRegionType
 
typedef TFixedImage FixedImageType
 
typedef InterpolatorType::Pointer InterpolatorPointer
 
typedef MetricType::InterpolatorType InterpolatorType
 
typedef MetricType::Pointer MetricPointer
 
typedef AdvancedImageToImageMetric< FixedImageType, MovingImageTypeMetricType
 
typedef MovingImageType::ConstPointer MovingImageConstPointer
 
typedef MovingImagePyramidType::Pointer MovingImagePyramidPointer
 
typedef MultiResolutionPyramidImageFilter< MovingImageType, MovingImageTypeMovingImagePyramidType
 
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< TransformTypeTransformOutputType
 
typedef TransformType::Pointer TransformPointer
 
typedef MetricType::AdvancedTransformType TransformType
 

Public Member Functions

virtual const char * GetClassName () const
 
virtual unsigned long GetCurrentLevel ()
 
virtual const FixedImageTypeGetFixedImage ()
 
virtual const FixedImageRegionTypeGetFixedImageRegion ()
 
virtual const ParametersTypeGetInitialTransformParameters ()
 
virtual const ParametersTypeGetInitialTransformParametersOfNextLevel ()
 
virtual const ParametersTypeGetLastTransformParameters ()
 
virtual const MovingImageTypeGetMovingImage ()
 
ModifiedTimeType GetMTime (void) const override
 
virtual unsigned long GetNumberOfLevels ()
 
const TransformOutputTypeGetOutput (void) const
 
 itkGetModifiableObjectMacro (FixedImagePyramid, FixedImagePyramidType)
 
 itkGetModifiableObjectMacro (Interpolator, InterpolatorType)
 
 itkGetModifiableObjectMacro (Metric, MetricType)
 
 itkGetModifiableObjectMacro (MovingImagePyramid, MovingImagePyramidType)
 
 itkGetModifiableObjectMacro (Optimizer, OptimizerType)
 
 itkGetModifiableObjectMacro (Transform, TransformType)
 
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

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

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
 

Member Typedef Documentation

◆ ConstPointer

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

◆ DataObjectPointer

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

Smart Pointer type to a DataObject.

Definition at line 163 of file itkMultiResolutionImageRegistrationMethod2.h.

◆ FixedImageConstPointer

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

◆ FixedImagePyramidPointer

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

◆ FixedImagePyramidType

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

Type of the Fixed image multiresolution pyramid.

Definition at line 149 of file itkMultiResolutionImageRegistrationMethod2.h.

◆ FixedImageRegionPyramidType

template<typename TFixedImage , typename TMovingImage >
typedef std::vector< FixedImageRegionType > itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::FixedImageRegionPyramidType

◆ FixedImageRegionType

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

◆ FixedImageType

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

Type of the Fixed image.

Definition at line 115 of file itkMultiResolutionImageRegistrationMethod2.h.

◆ InterpolatorPointer

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

◆ InterpolatorType

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

Type of the Interpolator.

Definition at line 141 of file itkMultiResolutionImageRegistrationMethod2.h.

◆ MetricPointer

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

◆ MetricType

template<typename TFixedImage , typename TMovingImage >
typedef AdvancedImageToImageMetric< FixedImageType, MovingImageType > itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::MetricType

Type of the metric.

Definition at line 126 of file itkMultiResolutionImageRegistrationMethod2.h.

◆ MovingImageConstPointer

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

◆ MovingImagePyramidPointer

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

◆ MovingImagePyramidType

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

Type of the moving image multiresolution pyramid.

Definition at line 154 of file itkMultiResolutionImageRegistrationMethod2.h.

◆ MovingImageType

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

Type of the Moving image.

Definition at line 121 of file itkMultiResolutionImageRegistrationMethod2.h.

◆ OptimizerType

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

Type of the optimizer.

Definition at line 145 of file itkMultiResolutionImageRegistrationMethod2.h.

◆ ParametersType

template<typename TFixedImage , typename TMovingImage >
typedef MetricType::TransformParametersType itk::MultiResolutionImageRegistrationMethod2< 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 160 of file itkMultiResolutionImageRegistrationMethod2.h.

◆ Pointer

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

◆ Self

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

Standard class typedefs.

Definition at line 103 of file itkMultiResolutionImageRegistrationMethod2.h.

◆ Superclass

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

◆ TransformOutputConstPointer

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

◆ TransformOutputPointer

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

◆ TransformOutputType

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

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

Definition at line 136 of file itkMultiResolutionImageRegistrationMethod2.h.

◆ TransformPointer

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

◆ TransformType

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

Type of the Transform .

Definition at line 130 of file itkMultiResolutionImageRegistrationMethod2.h.

Constructor & Destructor Documentation

◆ MultiResolutionImageRegistrationMethod2() [1/2]

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

Constructor.

◆ ~MultiResolutionImageRegistrationMethod2()

template<typename TFixedImage , typename TMovingImage >
itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::~MultiResolutionImageRegistrationMethod2 ( )
inlineoverrideprotected

Destructor.

Definition at line 250 of file itkMultiResolutionImageRegistrationMethod2.h.

◆ MultiResolutionImageRegistrationMethod2() [2/2]

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

Member Function Documentation

◆ GenerateData()

template<typename TFixedImage , typename TMovingImage >
void itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GenerateData ( void  )
overrideprotected

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

◆ GetClassName()

template<typename TFixedImage , typename TMovingImage >
virtual const char * itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetClassName ( ) const
virtual

◆ GetCurrentLevel()

template<typename TFixedImage , typename TMovingImage >
virtual unsigned long itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetCurrentLevel ( )
virtual

Get the current resolution level being processed.

◆ GetFixedImage()

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

◆ GetFixedImageRegion()

template<typename TFixedImage , typename TMovingImage >
virtual const FixedImageRegionType & itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetFixedImageRegion ( )
virtual

◆ GetInitialTransformParameters()

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

◆ GetInitialTransformParametersOfNextLevel()

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

◆ GetLastTransformParameters()

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

◆ GetMovingImage()

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

◆ GetMTime()

template<typename TFixedImage , typename TMovingImage >
ModifiedTimeType itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetMTime ( void  ) const
override

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

◆ GetNumberOfLevels()

template<typename TFixedImage , typename TMovingImage >
virtual unsigned long itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::GetNumberOfLevels ( )
virtual

◆ GetOutput()

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

Returns the transform resulting from the registration process.

◆ Initialize()

template<typename TFixedImage , typename TMovingImage >
virtual void itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::Initialize ( )
protectedvirtual

◆ itkGetModifiableObjectMacro() [1/6]

template<typename TFixedImage , typename TMovingImage >
itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::itkGetModifiableObjectMacro ( FixedImagePyramid  ,
FixedImagePyramidType   
)

◆ itkGetModifiableObjectMacro() [2/6]

template<typename TFixedImage , typename TMovingImage >
itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::itkGetModifiableObjectMacro ( Interpolator  ,
InterpolatorType   
)

◆ itkGetModifiableObjectMacro() [3/6]

template<typename TFixedImage , typename TMovingImage >
itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::itkGetModifiableObjectMacro ( Metric  ,
MetricType   
)

◆ itkGetModifiableObjectMacro() [4/6]

template<typename TFixedImage , typename TMovingImage >
itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::itkGetModifiableObjectMacro ( MovingImagePyramid  ,
MovingImagePyramidType   
)

◆ itkGetModifiableObjectMacro() [5/6]

template<typename TFixedImage , typename TMovingImage >
itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::itkGetModifiableObjectMacro ( Optimizer  ,
OptimizerType   
)

◆ itkGetModifiableObjectMacro() [6/6]

template<typename TFixedImage , typename TMovingImage >
itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::itkGetModifiableObjectMacro ( Transform  ,
TransformType   
)

◆ MakeOutput()

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.

◆ New()

template<typename TFixedImage , typename TMovingImage >
static Pointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::New ( )
static

Method for creation through the object factory.

◆ operator=()

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

◆ PreparePyramids()

template<typename TFixedImage , typename TMovingImage >
virtual void itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::PreparePyramids ( void  )
protectedvirtual

◆ PrintSelf()

template<typename TFixedImage , typename TMovingImage >
void itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const
overrideprotected

PrintSelf.

◆ SetCurrentLevel()

template<typename TFixedImage , typename TMovingImage >
virtual void itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::SetCurrentLevel ( unsigned long  _arg)
protectedvirtual

Set the current level to be processed.

◆ SetFixedImage()

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

Set/Get the Fixed image.

◆ SetFixedImagePyramid()

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

Set/Get the Fixed image pyramid.

◆ SetFixedImageRegion()

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

Set/Get the Metric.

◆ SetInitialTransformParameters()

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

Set/Get the initial transformation parameters.

◆ SetInitialTransformParametersOfNextLevel()

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.

◆ SetInterpolator()

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

Set/Get the Interpolator.

◆ SetMetric()

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

◆ SetMovingImage()

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

Set/Get the Moving image.

◆ SetMovingImagePyramid()

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

Set/Get the Moving image pyramid.

◆ SetNumberOfLevels()

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

Set/Get the number of multi-resolution levels.

◆ SetOptimizer()

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

Set/Get the Optimizer.

◆ SetTransform()

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

Set/Get the Transform.

◆ StartRegistration()

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

Method that initiates the registration.

◆ StopRegistration()

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

Method to stop the registration.

Field Documentation

◆ m_CurrentLevel

template<typename TFixedImage , typename TMovingImage >
unsigned long itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_CurrentLevel
private

◆ m_FixedImage

template<typename TFixedImage , typename TMovingImage >
FixedImageConstPointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_FixedImage
private

◆ m_FixedImagePyramid

template<typename TFixedImage , typename TMovingImage >
FixedImagePyramidPointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_FixedImagePyramid
private

◆ m_FixedImageRegion

template<typename TFixedImage , typename TMovingImage >
FixedImageRegionType itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_FixedImageRegion
private

◆ m_FixedImageRegionPyramid

template<typename TFixedImage , typename TMovingImage >
FixedImageRegionPyramidType itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_FixedImageRegionPyramid
private

◆ m_InitialTransformParameters

template<typename TFixedImage , typename TMovingImage >
ParametersType itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_InitialTransformParameters
private

◆ m_InitialTransformParametersOfNextLevel

template<typename TFixedImage , typename TMovingImage >
ParametersType itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_InitialTransformParametersOfNextLevel
private

◆ m_Interpolator

template<typename TFixedImage , typename TMovingImage >
InterpolatorPointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_Interpolator
private

◆ m_LastTransformParameters

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.

Definition at line 276 of file itkMultiResolutionImageRegistrationMethod2.h.

◆ m_Metric

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

Member variables.

Definition at line 285 of file itkMultiResolutionImageRegistrationMethod2.h.

◆ m_MovingImage

template<typename TFixedImage , typename TMovingImage >
MovingImageConstPointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_MovingImage
private

◆ m_MovingImagePyramid

template<typename TFixedImage , typename TMovingImage >
MovingImagePyramidPointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_MovingImagePyramid
private

◆ m_NumberOfLevels

template<typename TFixedImage , typename TMovingImage >
unsigned long itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_NumberOfLevels
private

◆ m_Optimizer

template<typename TFixedImage , typename TMovingImage >
OptimizerType::Pointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_Optimizer
private

◆ m_Stop

template<typename TFixedImage , typename TMovingImage >
bool itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_Stop
protected

◆ m_Transform

template<typename TFixedImage , typename TMovingImage >
TransformPointer itk::MultiResolutionImageRegistrationMethod2< TFixedImage, TMovingImage >::m_Transform
private


Generated on 1667476801 for elastix by doxygen 1.9.4 elastix logo