Main Page
Groups
Namespace List
Class Hierarchy
Alphabetical List
Compound List
File
List
Namespace Members
Compound Members
File Members
Concepts
itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage > Class Template Reference
[Registration Filters]
Base class for PointSet to Image Registration Methods.
More...
#include <itkPointSetToImageRegistrationMethod.h>
Inheritance diagram for itk::PointSetToImageRegistrationMethod:
[legend]Collaboration diagram for itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >:
[legend]List of all members.
Detailed Description
template<typename TFixedPointSet, typename TMovingImage>
class itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >
Base class for PointSet to Image Registration Methods.
This Class define the generic interface for a registration method.
This class is templated over the type of the PointSet and the 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 PointSet and the Image. 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 PointSet with Images provide a single value as output.
The terms : FixedPointSet and MovingImage are used in this class to indicate that the image is being mapped by the transform.
This class uses the coordinate system of the Fixed PointSet as a reference and searchs for a Transform that will map points from the space of the Fixed PointSet 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 itkPointSetToImageRegistrationMethod.h.
Member Typedef Documentation
|
template<typename TFixedPointSet, typename TMovingImage> |
| typedef SmartPointer<const Self> itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::ConstPointer
|
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| typedef FixedPointSetType::ConstPointer itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::FixedPointSetConstPointer
|
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| typedef TFixedPointSet itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::FixedPointSetType
|
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| typedef InterpolatorType::Pointer itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::InterpolatorPointer
|
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| typedef MetricType::InterpolatorType itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::InterpolatorType
|
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| typedef MetricType::Pointer itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::MetricPointer
|
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| typedef MovingImageType::ConstPointer itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::MovingImageConstPointer
|
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| typedef TMovingImage itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::MovingImageType
|
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| typedef SingleValuedNonLinearOptimizer itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::OptimizerType
|
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| typedef MetricType::TransformParametersType itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::ParametersType
|
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| typedef SmartPointer<Self> itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::Pointer
|
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| typedef PointSetToImageRegistrationMethod itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::Self
|
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| typedef ProcessObject itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::Superclass
|
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| typedef TransformType::Pointer itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::TransformPointer
|
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| typedef MetricType::TransformType itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::TransformType
|
|
Constructor & Destructor Documentation
|
template<typename TFixedPointSet, typename TMovingImage> |
| itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::PointSetToImageRegistrationMethod |
( |
|
) |
[protected] |
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| virtual itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::~PointSetToImageRegistrationMethod |
( |
|
) |
[inline, protected, virtual] |
|
Member Function Documentation
|
template<typename TFixedPointSet, typename TMovingImage> |
| virtual const char* itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::GetClassName |
( |
|
) |
const [virtual] |
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| virtual const FixedPointSetType* itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::GetFixedPointSet |
( |
|
) |
[virtual] |
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| virtual const ParametersType& itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::GetInitialTransformParameters |
( |
|
) |
[virtual] |
|
|
|
Set/Get the initial transformation parameters. |
|
template<typename TFixedPointSet, typename TMovingImage> |
| virtual InterpolatorType* itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::GetInterpolator |
( |
|
) |
[virtual] |
|
|
|
Set/Get the Interpolator. |
|
template<typename TFixedPointSet, typename TMovingImage> |
| virtual const ParametersType& itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::GetLastTransformParameters |
( |
|
) |
[virtual] |
|
|
|
Get the last transformation parameters visited by the optimizer. |
|
template<typename TFixedPointSet, typename TMovingImage> |
| virtual MetricType* itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::GetMetric |
( |
|
) |
[virtual] |
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| virtual const MovingImageType* itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::GetMovingImage |
( |
|
) |
[virtual] |
|
|
|
Set/Get the Moving image. |
|
template<typename TFixedPointSet, typename TMovingImage> |
| virtual OptimizerType* itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::GetOptimizer |
( |
|
) |
[virtual] |
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| virtual TransformType* itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::GetTransform |
( |
|
) |
[virtual] |
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| void itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::Initialize |
( |
|
) |
throw (ExceptionObject) |
|
|
|
Initialize by setting the interconnects between the components. |
|
template<typename TFixedPointSet, typename TMovingImage> |
| Pointer itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::New |
( |
|
) |
[static] |
|
|
|
Method for creation through the object factory.
Reimplemented from itk::Object. |
|
template<typename TFixedPointSet, typename TMovingImage> |
| void itk::PointSetToImageRegistrationMethod< TFixedPointSet, 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 TFixedPointSet, typename TMovingImage> |
| virtual void itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::SetFixedPointSet |
( |
const FixedPointSetType * |
_arg |
) |
[virtual] |
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| virtual void itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::SetInitialTransformParameters |
( |
const ParametersType & |
param |
) |
[virtual] |
|
|
|
Set/Get the initial transformation parameters. |
|
template<typename TFixedPointSet, typename TMovingImage> |
| virtual void itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::SetInterpolator |
( |
InterpolatorType * |
_arg |
) |
[virtual] |
|
|
|
Set/Get the Interpolator. |
|
template<typename TFixedPointSet, typename TMovingImage> |
| virtual void itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::SetMetric |
( |
MetricType * |
_arg |
) |
[virtual] |
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| virtual void itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::SetMovingImage |
( |
const MovingImageType * |
_arg |
) |
[virtual] |
|
|
|
Set/Get the Moving image. |
|
template<typename TFixedPointSet, typename TMovingImage> |
| virtual void itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::SetOptimizer |
( |
OptimizerType * |
_arg |
) |
[virtual] |
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| virtual void itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::SetTransform |
( |
TransformType * |
_arg |
) |
[virtual] |
|
|
template<typename TFixedPointSet, typename TMovingImage> |
| void itk::PointSetToImageRegistrationMethod< TFixedPointSet, TMovingImage >::StartRegistration |
( |
void |
|
) |
|
|
|
|
Method that initiates the registration. |
The documentation for this class was generated from the following file:
Generated at Tue Sep 16 11:41:12 2003 for ITK by
1.2.15 written by Dimitri van Heesch,
© 1997-2000