ITK
4.3.0
Insight Segmentation and Registration Toolkit
|
#include <itkImageRegistrationMethod.h>
Base class for Image Registration Methods.
This Class define the generic interface for a registration method.
This class is templated over the type of the two image to be registered. A generic Transform is used by this class. That allows to select at run time the particular type of transformation that is to be applied for registering the images.
This method use a generic Metric in order to compare the two images. the final goal of the registration method is to find the set of parameters of the Transformation that optimizes the metric.
The registration method also support a generic optimizer that can be selected at run-time. The only restriction for the optimizer is that it should be able to operate in single-valued cost functions given that the metrics used to compare images provide a single value as output.
The terms : Fixed image and Moving image are used in this class to indicate what image is being mapped by the transform.
This class uses the coordinate system of the Fixed image as a reference and searchs for a Transform that will map points from the space of the Fixed image to the space of the Moving image.
For doing so, a Metric will be continuously applied to compare the Fixed image with the Transformed Moving image. This process also requires to interpolate values from the Moving image.
Definition at line 70 of file itkImageRegistrationMethod.h.
Static Public Member Functions | |
static Pointer | New () |
Private Member Functions | |
ImageRegistrationMethod (const Self &) | |
void | operator= (const Self &) |
Additional Inherited Members | |
Protected Types inherited from itk::LightObject | |
typedef int | InternalReferenceCountType |
Protected Attributes inherited from itk::ProcessObject | |
TimeStamp | m_OutputInformationMTime |
bool | m_Updating |
typedef SmartPointer< const Self > itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::ConstPointer |
Definition at line 77 of file itkImageRegistrationMethod.h.
typedef DataObject::Pointer itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::DataObjectPointer |
Smart Pointer type to a DataObject.
Definition at line 120 of file itkImageRegistrationMethod.h.
typedef ProcessObject::DataObjectPointerArraySizeType itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::DataObjectPointerArraySizeType |
Make a DataObject of the correct type to be used as the specified output.
Definition at line 195 of file itkImageRegistrationMethod.h.
typedef FixedImageType::ConstPointer itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::FixedImageConstPointer |
Definition at line 87 of file itkImageRegistrationMethod.h.
typedef MetricType::FixedImageRegionType itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::FixedImageRegionType |
Definition at line 96 of file itkImageRegistrationMethod.h.
typedef TFixedImage itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::FixedImageType |
Type of the Fixed image.
Definition at line 83 of file itkImageRegistrationMethod.h.
typedef InterpolatorType::Pointer itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::InterpolatorPointer |
Definition at line 110 of file itkImageRegistrationMethod.h.
typedef MetricType::InterpolatorType itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::InterpolatorType |
Type of the Interpolator.
Definition at line 109 of file itkImageRegistrationMethod.h.
typedef MetricType::Pointer itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::MetricPointer |
Definition at line 95 of file itkImageRegistrationMethod.h.
typedef ImageToImageMetric< FixedImageType, MovingImageType > itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::MetricType |
Type of the metric.
Definition at line 94 of file itkImageRegistrationMethod.h.
typedef MovingImageType::ConstPointer itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::MovingImageConstPointer |
Definition at line 91 of file itkImageRegistrationMethod.h.
typedef TMovingImage itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::MovingImageType |
Type of the Moving image.
Definition at line 90 of file itkImageRegistrationMethod.h.
typedef SingleValuedNonLinearOptimizer itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::OptimizerType |
Type of the optimizer.
Definition at line 113 of file itkImageRegistrationMethod.h.
typedef MetricType::TransformParametersType itk::ImageRegistrationMethod< 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 117 of file itkImageRegistrationMethod.h.
typedef SmartPointer< Self > itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::Pointer |
Definition at line 76 of file itkImageRegistrationMethod.h.
typedef ImageRegistrationMethod itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::Self |
Standard class typedefs.
Definition at line 74 of file itkImageRegistrationMethod.h.
typedef ProcessObject itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::Superclass |
Definition at line 75 of file itkImageRegistrationMethod.h.
typedef TransformOutputType::ConstPointer itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::TransformOutputConstPointer |
Definition at line 106 of file itkImageRegistrationMethod.h.
typedef TransformOutputType::Pointer itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::TransformOutputPointer |
Definition at line 105 of file itkImageRegistrationMethod.h.
typedef DataObjectDecorator< TransformType > itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::TransformOutputType |
Type for the output: Using Decorator pattern for enabling the Transform to be passed in the data pipeline
Definition at line 104 of file itkImageRegistrationMethod.h.
typedef TransformType::Pointer itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::TransformPointer |
Definition at line 100 of file itkImageRegistrationMethod.h.
typedef MetricType::TransformType itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::TransformType |
Type of the Transform .
Definition at line 99 of file itkImageRegistrationMethod.h.
|
protected |
|
inlineprotectedvirtual |
Definition at line 224 of file itkImageRegistrationMethod.h.
|
private |
|
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.
|
protectedvirtual |
Method invoked by the pipeline in order to trigger the computation of the registration.
Reimplemented from itk::ProcessObject.
|
virtual |
|
virtual |
Get the region of the fixed image to be considered as region of interest during the registration. This region will be passed to the ImageMetric in order to restrict the metric computation to consider only this region.
|
virtual |
True if a region has been defined for the fixed image to which the ImageMetric will limit its computation
|
virtual |
|
virtual |
Set/Get the Interpolator.
|
virtual |
Get the last transformation parameters visited by the optimizer.
|
virtual |
Set/Get the Metric.
|
virtual |
|
virtual |
Method to return the latest modified time of this object or any of its cached ivars
Reimplemented from itk::Object.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::ProcessObject.
|
virtual |
Set/Get the Optimizer.
const TransformOutputType* itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::GetOutput | ( | ) | const |
Returns the transform resulting from the registration process
|
virtual |
Set/Get the Transfrom.
|
virtual |
Initialize by setting the interconnects between the components.
|
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.
|
static |
Method for creation through the object factory.
|
private |
|
protectedvirtual |
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.
void itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::SetFixedImage | ( | const FixedImageType * | fixedImage | ) |
Set/Get the Fixed image.
void itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::SetFixedImageRegion | ( | const FixedImageRegionType & | region | ) |
Set the region of the fixed image to be considered as region of interest during the registration. This region will be passed to the ImageMetric in order to restrict the metric computation to consider only this region.
|
virtual |
Turn on/off the use of a fixed image region to which the ImageMetric will limit its computation.
|
virtual |
Set/Get the initial transformation parameters.
|
virtual |
Set/Get the Interpolator.
|
protectedvirtual |
Provides derived classes with the ability to set this private var
|
virtual |
Set/Get the Metric.
void itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::SetMovingImage | ( | const MovingImageType * | movingImage | ) |
Set/Get the Moving image.
|
virtual |
Set/Get the Optimizer.
|
virtual |
Set/Get the Transfrom.
|
protected |
|
private |
Definition at line 244 of file itkImageRegistrationMethod.h.
|
private |
Definition at line 253 of file itkImageRegistrationMethod.h.
|
private |
Definition at line 252 of file itkImageRegistrationMethod.h.
|
private |
Definition at line 249 of file itkImageRegistrationMethod.h.
|
private |
Definition at line 247 of file itkImageRegistrationMethod.h.
|
private |
Definition at line 250 of file itkImageRegistrationMethod.h.
|
private |
Definition at line 240 of file itkImageRegistrationMethod.h.
|
private |
Definition at line 243 of file itkImageRegistrationMethod.h.
|
private |
Definition at line 241 of file itkImageRegistrationMethod.h.
|
private |
Definition at line 246 of file itkImageRegistrationMethod.h.