Main Page
Groups
Namespace List
Class Hierarchy
Alphabetical List
Compound List
File
List
Namespace Members
Compound Members
File Members
Concepts
itk::ImageRegistrationMethod< TFixedImage, TMovingImage > Class Template Reference
[Registration Filters]
Base class for Image Registration Methods.
More...
#include <itkImageRegistrationMethod.h>
Inheritance diagram for itk::ImageRegistrationMethod:
[legend]Collaboration diagram for itk::ImageRegistrationMethod< TFixedImage, TMovingImage >:
[legend]List of all members.
Detailed Description
template<typename TFixedImage, typename TMovingImage>
class itk::ImageRegistrationMethod< TFixedImage, TMovingImage >
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 continously 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 62 of file itkImageRegistrationMethod.h.
Member Typedef Documentation
template<typename TFixedImage, typename TMovingImage> |
typedef SmartPointer<const Self> itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::ConstPointer
|
|
template<typename TFixedImage, typename TMovingImage> |
typedef FixedImageType::ConstPointer itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::FixedImageConstPointer
|
|
template<typename TFixedImage, typename TMovingImage> |
typedef MetricType::FixedImageRegionType itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::FixedImageRegionType
|
|
template<typename TFixedImage, typename TMovingImage> |
typedef TFixedImage itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::FixedImageType
|
|
template<typename TFixedImage, typename TMovingImage> |
typedef InterpolatorType::Pointer itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::InterpolatorPointer
|
|
template<typename TFixedImage, typename TMovingImage> |
typedef MetricType::InterpolatorType itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::InterpolatorType
|
|
template<typename TFixedImage, typename TMovingImage> |
typedef MetricType::Pointer itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::MetricPointer
|
|
template<typename TFixedImage, typename TMovingImage> |
typedef MovingImageType::ConstPointer itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::MovingImageConstPointer
|
|
template<typename TFixedImage, typename TMovingImage> |
typedef TMovingImage itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::MovingImageType
|
|
template<typename TFixedImage, typename TMovingImage> |
typedef SingleValuedNonLinearOptimizer itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::OptimizerType
|
|
template<typename TFixedImage, typename TMovingImage> |
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 104 of file itkImageRegistrationMethod.h. |
template<typename TFixedImage, typename TMovingImage> |
typedef SmartPointer<Self> itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::Pointer
|
|
template<typename TFixedImage, typename TMovingImage> |
typedef ImageRegistrationMethod itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::Self
|
|
template<typename TFixedImage, typename TMovingImage> |
typedef ProcessObject itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::Superclass
|
|
template<typename TFixedImage, typename TMovingImage> |
typedef TransformType::Pointer itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::TransformPointer
|
|
template<typename TFixedImage, typename TMovingImage> |
typedef MetricType::TransformType itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::TransformType
|
|
Constructor & Destructor Documentation
template<typename TFixedImage, typename TMovingImage> |
itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::ImageRegistrationMethod |
( |
|
) |
[protected] |
|
template<typename TFixedImage, typename TMovingImage> |
virtual itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::~ImageRegistrationMethod |
( |
|
) |
[inline, protected, virtual] |
|
Member Function Documentation
template<typename TFixedImage, typename TMovingImage> |
virtual const char* itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::GetClassName |
( |
|
) |
const [virtual] |
|
template<typename TFixedImage, typename TMovingImage> |
virtual const FixedImageType* itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::GetFixedImage |
( |
|
) |
[virtual] |
|
template<typename TFixedImage, typename TMovingImage> |
virtual const FixedImageRegionType& itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::GetFixedImageRegion |
( |
|
) |
[protected, virtual] |
|
|
Allow subclass to access information on FixedImageRegion. |
template<typename TFixedImage, typename TMovingImage> |
virtual bool itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::GetFixedImageRegionDefined |
( |
|
) |
[protected, virtual] |
|
|
Allow subclass to access information on FixedImageRegion. |
template<typename TFixedImage, typename TMovingImage> |
virtual const ParametersType& itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::GetInitialTransformParameters |
( |
|
) |
[virtual] |
|
|
Set/Get the initial transformation parameters. |
template<typename TFixedImage, typename TMovingImage> |
virtual InterpolatorType* itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::GetInterpolator |
( |
|
) |
[virtual] |
|
|
Set/Get the Interpolator. |
template<typename TFixedImage, typename TMovingImage> |
virtual const ParametersType& itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::GetLastTransformParameters |
( |
|
) |
[virtual] |
|
|
Get the last transformation parameters visited by the optimizer. |
template<typename TFixedImage, typename TMovingImage> |
virtual MetricType* itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::GetMetric |
( |
|
) |
[virtual] |
|
template<typename TFixedImage, typename TMovingImage> |
virtual const MovingImageType* itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::GetMovingImage |
( |
|
) |
[virtual] |
|
|
Set/Get the Moving image. |
template<typename TFixedImage, typename TMovingImage> |
virtual OptimizerType* itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::GetOptimizer |
( |
|
) |
[virtual] |
|
template<typename TFixedImage, typename TMovingImage> |
virtual TransformType* itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::GetTransform |
( |
|
) |
[virtual] |
|
template<typename TFixedImage, typename TMovingImage> |
void itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::Initialize |
( |
|
) |
throw (ExceptionObject) |
|
|
Initialize by setting the interconnects between the components. |
template<typename TFixedImage, typename TMovingImage> |
Pointer itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::New |
( |
|
) |
[static] |
|
|
Method for creation through the object factory.
Reimplemented from itk::Object. |
template<typename TFixedImage, typename TMovingImage> |
void itk::ImageRegistrationMethod< 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::ImageRegistrationMethod< TFixedImage, TMovingImage >::SetFixedImage |
( |
const FixedImageType * |
_arg |
) |
[virtual] |
|
template<typename TFixedImage, typename TMovingImage> |
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. -
Warning:
-
The same region can also be set directly into the metric. please avoid to set the region in both places since this can lead to inconsistent configurations.
|
template<typename TFixedImage, typename TMovingImage> |
virtual void itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::SetInitialTransformParameters |
( |
const ParametersType & |
param |
) |
[virtual] |
|
|
Set/Get the initial transformation parameters. |
template<typename TFixedImage, typename TMovingImage> |
virtual void itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::SetInterpolator |
( |
InterpolatorType * |
_arg |
) |
[virtual] |
|
|
Set/Get the Interpolator. |
template<typename TFixedImage, typename TMovingImage> |
virtual void itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::SetMetric |
( |
MetricType * |
_arg |
) |
[virtual] |
|
template<typename TFixedImage, typename TMovingImage> |
virtual void itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::SetMovingImage |
( |
const MovingImageType * |
_arg |
) |
[virtual] |
|
|
Set/Get the Moving image. |
template<typename TFixedImage, typename TMovingImage> |
virtual void itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::SetOptimizer |
( |
OptimizerType * |
_arg |
) |
[virtual] |
|
template<typename TFixedImage, typename TMovingImage> |
virtual void itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::SetTransform |
( |
TransformType * |
_arg |
) |
[virtual] |
|
template<typename TFixedImage, typename TMovingImage> |
void itk::ImageRegistrationMethod< TFixedImage, TMovingImage >::StartRegistration |
( |
void |
|
) |
|
|
|
Method that initiates the registration. |
The documentation for this class was generated from the following file:
Generated at Fri May 21 01:46:19 2004 for ITK by
1.2.15 written by Dimitri van Heesch,
© 1997-2000