Slicer  4.8
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
List of all members | Public Types | Public Member Functions | Protected Member Functions | Protected Attributes
itk::ImageToImageRegistrationMethod< TImage > Class Template Reference

#include <Modules/CLI/ExpertAutomatedRegistration/ITKRegistrationHelper/itkImageToImageRegistrationMethod.h>

Inheritance diagram for itk::ImageToImageRegistrationMethod< TImage >:
Inheritance graph
[legend]
Collaboration diagram for itk::ImageToImageRegistrationMethod< TImage >:
Collaboration graph
[legend]

Public Types

typedef SmartPointer< const SelfConstPointer
 
typedef DataObject::Pointer DataObjectPointer
 
typedef Superclass::DataObjectPointerArraySizeType DataObjectPointerArraySizeType
 
typedef TImage ImageType
 
typedef SpatialObject< itkGetStaticConstMacro(ImageDimension)> MaskObjectType
 
typedef SmartPointer< SelfPointer
 
typedef TImage::PointType PointType
 
typedef ImageToImageRegistrationMethod Self
 
typedef ProcessObject Superclass
 
typedef DataObjectDecorator< TransformTypeTransformOutputType
 
typedef Transform< double, itkGetStaticConstMacro(ImageDimension), itkGetStaticConstMacro(ImageDimension)> TransformType
 

Public Member Functions

const TransformOutputTypeGetOutput (void) const
 
 itkBooleanMacro (ReportProgress)
 
 itkGetConstObjectMacro (FixedImage, ImageType)
 
 itkGetConstObjectMacro (MovingImage, ImageType)
 
 itkGetConstObjectMacro (FixedImageMaskObject, MaskObjectType)
 
 itkGetConstObjectMacro (MovingImageMaskObject, MaskObjectType)
 
 itkGetMacro (RegistrationNumberOfThreads, unsigned int)
 
 itkGetMacro (UseRegionOfInterest, bool)
 
 itkGetMacro (RegionOfInterestPoint1, PointType)
 
 itkGetMacro (RegionOfInterestPoint2, PointType)
 
 itkGetMacro (UseFixedImageMaskObject, bool)
 
 itkGetMacro (UseMovingImageMaskObject, bool)
 
 itkGetMacro (ReportProgress, bool)
 
 itkGetObjectMacro (Observer, Command)
 
 itkNewMacro (Self)
 
 itkSetMacro (RegistrationNumberOfThreads, unsigned int)
 
 itkSetMacro (UseRegionOfInterest, bool)
 
 itkSetMacro (RegionOfInterestPoint1, PointType)
 
 itkSetMacro (RegionOfInterestPoint2, PointType)
 
 itkSetMacro (UseFixedImageMaskObject, bool)
 
 itkSetMacro (UseMovingImageMaskObject, bool)
 
 itkSetMacro (ReportProgress, bool)
 
 itkSetObjectMacro (Observer, Command)
 
 itkStaticConstMacro (ImageDimension, unsigned int, TImage::ImageDimension)
 
 itkTypeMacro (ImageToImageRegistrationMethod, ProcessObject)
 
void SetFixedImage (const ImageType *fixedImage)
 
void SetFixedImageMaskObject (const MaskObjectType *maskObject)
 
void SetMovingImage (const ImageType *movingImage)
 
void SetMovingImageMaskObject (const MaskObjectType *maskObject)
 
void SetRegionOfInterest (const PointType &point1, const PointType &point2)
 

Protected Member Functions

void GenerateData (void) ITK_OVERRIDE
 
unsigned long GetMTime (void) const ITK_OVERRIDE
 
 ImageToImageRegistrationMethod (void)
 
virtual void Initialize (void)
 
 itkGetConstObjectMacro (Transform, TransformType)
 
 itkGetObjectMacro (Transform, TransformType)
 
 itkSetObjectMacro (Transform, TransformType)
 
virtual DataObjectPointer MakeOutput (DataObjectPointerArraySizeType idx) ITK_OVERRIDE
 
void PrintSelf (std::ostream &os, Indent indent) const ITK_OVERRIDE
 
virtual ~ImageToImageRegistrationMethod (void)
 

Protected Attributes

TransformType::Pointer m_Transform
 

Detailed Description

template<class TImage>
class itk::ImageToImageRegistrationMethod< TImage >

This is the base class for the registration methods.

This class has a separate hierarchy from the ImageRegistrationMethod defined in ITK. The purpose of this class is to provide the common functionalities of a registration method in a context that is easy to use from the Registration Helper class that provides an even higher-level, user-friendly interface to a generic image registration problem.

Definition at line 39 of file itkImageToImageRegistrationMethod.h.

Member Typedef Documentation

◆ ConstPointer

template<class TImage >
typedef SmartPointer<const Self> itk::ImageToImageRegistrationMethod< TImage >::ConstPointer

Definition at line 48 of file itkImageToImageRegistrationMethod.h.

◆ DataObjectPointer

template<class TImage >
typedef DataObject::Pointer itk::ImageToImageRegistrationMethod< TImage >::DataObjectPointer

Definition at line 67 of file itkImageToImageRegistrationMethod.h.

◆ DataObjectPointerArraySizeType

template<class TImage >
typedef Superclass::DataObjectPointerArraySizeType itk::ImageToImageRegistrationMethod< TImage >::DataObjectPointerArraySizeType

Definition at line 69 of file itkImageToImageRegistrationMethod.h.

◆ ImageType

template<class TImage >
typedef TImage itk::ImageToImageRegistrationMethod< TImage >::ImageType

Definition at line 71 of file itkImageToImageRegistrationMethod.h.

◆ MaskObjectType

template<class TImage >
typedef SpatialObject<itkGetStaticConstMacro( ImageDimension )> itk::ImageToImageRegistrationMethod< TImage >::MaskObjectType

Definition at line 76 of file itkImageToImageRegistrationMethod.h.

◆ Pointer

template<class TImage >
typedef SmartPointer<Self> itk::ImageToImageRegistrationMethod< TImage >::Pointer

Definition at line 47 of file itkImageToImageRegistrationMethod.h.

◆ PointType

template<class TImage >
typedef TImage::PointType itk::ImageToImageRegistrationMethod< TImage >::PointType

Definition at line 73 of file itkImageToImageRegistrationMethod.h.

◆ Self

template<class TImage >
typedef ImageToImageRegistrationMethod itk::ImageToImageRegistrationMethod< TImage >::Self

Definition at line 45 of file itkImageToImageRegistrationMethod.h.

◆ Superclass

template<class TImage >
typedef ProcessObject itk::ImageToImageRegistrationMethod< TImage >::Superclass

Definition at line 46 of file itkImageToImageRegistrationMethod.h.

◆ TransformOutputType

template<class TImage >
typedef DataObjectDecorator<TransformType> itk::ImageToImageRegistrationMethod< TImage >::TransformOutputType

Definition at line 65 of file itkImageToImageRegistrationMethod.h.

◆ TransformType

template<class TImage >
typedef Transform<double, itkGetStaticConstMacro( ImageDimension ), itkGetStaticConstMacro( ImageDimension )> itk::ImageToImageRegistrationMethod< TImage >::TransformType

Definition at line 63 of file itkImageToImageRegistrationMethod.h.

Constructor & Destructor Documentation

◆ ImageToImageRegistrationMethod()

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::ImageToImageRegistrationMethod ( void  )
protected

◆ ~ImageToImageRegistrationMethod()

template<class TImage >
virtual itk::ImageToImageRegistrationMethod< TImage >::~ImageToImageRegistrationMethod ( void  )
protectedvirtual

Member Function Documentation

◆ GenerateData()

template<class TImage >
void itk::ImageToImageRegistrationMethod< TImage >::GenerateData ( void  )
protected

Method that actually computes the registration. This method is intended to be overloaded by derived classes. Those overload, however, must invoke this method in the base class.

◆ GetMTime()

template<class TImage >
unsigned long itk::ImageToImageRegistrationMethod< TImage >::GetMTime ( void  ) const
protected

◆ GetOutput()

template<class TImage >
const TransformOutputType* itk::ImageToImageRegistrationMethod< TImage >::GetOutput ( void  ) const

Return the output of the registration process, which is a Transform

◆ Initialize()

template<class TImage >
virtual void itk::ImageToImageRegistrationMethod< TImage >::Initialize ( void  )
protectedvirtual

◆ itkBooleanMacro()

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkBooleanMacro ( ReportProgress  )

◆ itkGetConstObjectMacro() [1/5]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkGetConstObjectMacro ( FixedImage  ,
ImageType   
)

◆ itkGetConstObjectMacro() [2/5]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkGetConstObjectMacro ( MovingImage  ,
ImageType   
)

◆ itkGetConstObjectMacro() [3/5]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkGetConstObjectMacro ( FixedImageMaskObject  ,
MaskObjectType   
)

◆ itkGetConstObjectMacro() [4/5]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkGetConstObjectMacro ( MovingImageMaskObject  ,
MaskObjectType   
)

◆ itkGetConstObjectMacro() [5/5]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkGetConstObjectMacro ( Transform  ,
TransformType   
)
protected

◆ itkGetMacro() [1/7]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkGetMacro ( RegistrationNumberOfThreads  ,
unsigned  int 
)

◆ itkGetMacro() [2/7]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkGetMacro ( UseRegionOfInterest  ,
bool   
)

◆ itkGetMacro() [3/7]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkGetMacro ( RegionOfInterestPoint1  ,
PointType   
)

◆ itkGetMacro() [4/7]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkGetMacro ( RegionOfInterestPoint2  ,
PointType   
)

◆ itkGetMacro() [5/7]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkGetMacro ( UseFixedImageMaskObject  ,
bool   
)

◆ itkGetMacro() [6/7]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkGetMacro ( UseMovingImageMaskObject  ,
bool   
)

◆ itkGetMacro() [7/7]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkGetMacro ( ReportProgress  ,
bool   
)

◆ itkGetObjectMacro() [1/2]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkGetObjectMacro ( Observer  ,
Command   
)

◆ itkGetObjectMacro() [2/2]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkGetObjectMacro ( Transform  ,
TransformType   
)
protected

◆ itkNewMacro()

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkNewMacro ( Self  )

◆ itkSetMacro() [1/7]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkSetMacro ( RegistrationNumberOfThreads  ,
unsigned  int 
)

◆ itkSetMacro() [2/7]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkSetMacro ( UseRegionOfInterest  ,
bool   
)

◆ itkSetMacro() [3/7]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkSetMacro ( RegionOfInterestPoint1  ,
PointType   
)

◆ itkSetMacro() [4/7]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkSetMacro ( RegionOfInterestPoint2  ,
PointType   
)

◆ itkSetMacro() [5/7]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkSetMacro ( UseFixedImageMaskObject  ,
bool   
)

◆ itkSetMacro() [6/7]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkSetMacro ( UseMovingImageMaskObject  ,
bool   
)

◆ itkSetMacro() [7/7]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkSetMacro ( ReportProgress  ,
bool   
)

◆ itkSetObjectMacro() [1/2]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkSetObjectMacro ( Observer  ,
Command   
)

◆ itkSetObjectMacro() [2/2]

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkSetObjectMacro ( Transform  ,
TransformType   
)
protected

Provide derived classes with access to the Transform member variable.

◆ itkStaticConstMacro()

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkStaticConstMacro ( ImageDimension  ,
unsigned  int,
TImage::ImageDimension   
)

◆ itkTypeMacro()

template<class TImage >
itk::ImageToImageRegistrationMethod< TImage >::itkTypeMacro ( ImageToImageRegistrationMethod< TImage >  ,
ProcessObject   
)

◆ MakeOutput()

template<class TImage >
virtual DataObjectPointer itk::ImageToImageRegistrationMethod< TImage >::MakeOutput ( DataObjectPointerArraySizeType  idx)
protectedvirtual

◆ PrintSelf()

template<class TImage >
void itk::ImageToImageRegistrationMethod< TImage >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const
protected

◆ SetFixedImage()

template<class TImage >
void itk::ImageToImageRegistrationMethod< TImage >::SetFixedImage ( const ImageType fixedImage)

◆ SetFixedImageMaskObject()

template<class TImage >
void itk::ImageToImageRegistrationMethod< TImage >::SetFixedImageMaskObject ( const MaskObjectType maskObject)

◆ SetMovingImage()

template<class TImage >
void itk::ImageToImageRegistrationMethod< TImage >::SetMovingImage ( const ImageType movingImage)

◆ SetMovingImageMaskObject()

template<class TImage >
void itk::ImageToImageRegistrationMethod< TImage >::SetMovingImageMaskObject ( const MaskObjectType maskObject)

◆ SetRegionOfInterest()

template<class TImage >
void itk::ImageToImageRegistrationMethod< TImage >::SetRegionOfInterest ( const PointType point1,
const PointType point2 
)

Member Data Documentation

◆ m_Transform

template<class TImage >
TransformType::Pointer itk::ImageToImageRegistrationMethod< TImage >::m_Transform
protected

Definition at line 151 of file itkImageToImageRegistrationMethod.h.


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