ITK  4.0.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | Private Member Functions
itk::TransformParametersAdaptor< TTransform > Class Template Reference

Base helper class intended for multi-resolution image registration. More...

#include <itkTransformParametersAdaptor.h>

Inheritance diagram for itk::TransformParametersAdaptor< TTransform >:
Collaboration diagram for itk::TransformParametersAdaptor< TTransform >:

List of all members.

Public Types

typedef SmartPointer< const SelfConstPointer
typedef Superclass::ParametersType ParametersType
typedef
Superclass::ParametersValueType 
ParametersValueType
typedef SmartPointer< SelfPointer
typedef TransformParametersAdaptor Self
typedef
TransformParametersAdaptorBase
< TTransform > 
Superclass
typedef
Superclass::TransformPointer 
TransformPointer
typedef TTransform TransformType

Public Member Functions

virtual void AdaptTransformParameters ()
virtual ::itk::LightObject::Pointer CreateAnother (void) const
virtual const char * GetNameOfClass () const
virtual const ParametersTypeGetRequiredFixedParameters ()
virtual void SetRequiredFixedParameters (ParametersType _arg)
virtual void SetTransform (TransformType *_arg)

Static Public Member Functions

static Pointer New ()

Protected Member Functions

void PrintSelf (std::ostream &os, Indent) const
 TransformParametersAdaptor ()
 ~TransformParametersAdaptor ()

Protected Attributes

ParametersType m_RequiredFixedParameters
TransformPointer m_Transform

Private Member Functions

void operator= (const Self &)
 TransformParametersAdaptor (const Self &)

Detailed Description

template<class TTransform>
class itk::TransformParametersAdaptor< TTransform >

Base helper class intended for multi-resolution image registration.

During multi-resolution image registration, it is often useful to expand the number of parameters describing the transform when going from one level to the next. For example, in B-spline registration, one often wants to increase the mesh size (or, equivalently, the control point grid size) for increased flexibility in optimizing the transform. This requires the propagation of the current transform solution to the next level where the solution is identical but with an increase in the number of parameters. This base class and those derived classes are meant to handle these types of situations.

Basic usage will involve the user specifying the required fixed parameters, i.e.

   transformAdaptor->SetTransform( transform );
   transformAdaptor->SetRequiredFixedParameters( fixedParameters );
   transformAdaptor->AdaptTransformParameters();

which will adjust the transform based on the new fixed parameters.

Author:
Nick Tustison
Marius Staring

Definition at line 54 of file itkTransformParametersAdaptor.h.


Member Typedef Documentation

template<class TTransform >
typedef SmartPointer<const Self> itk::TransformParametersAdaptor< TTransform >::ConstPointer
template<class TTransform >
typedef Superclass::ParametersType itk::TransformParametersAdaptor< TTransform >::ParametersType
template<class TTransform >
typedef Superclass::ParametersValueType itk::TransformParametersAdaptor< TTransform >::ParametersValueType
template<class TTransform >
typedef SmartPointer<Self> itk::TransformParametersAdaptor< TTransform >::Pointer
template<class TTransform >
typedef TransformParametersAdaptor itk::TransformParametersAdaptor< TTransform >::Self
template<class TTransform >
typedef TransformParametersAdaptorBase<TTransform> itk::TransformParametersAdaptor< TTransform >::Superclass
template<class TTransform >
typedef Superclass::TransformPointer itk::TransformParametersAdaptor< TTransform >::TransformPointer
template<class TTransform >
typedef TTransform itk::TransformParametersAdaptor< TTransform >::TransformType

Constructor & Destructor Documentation

template<class TTransform >
itk::TransformParametersAdaptor< TTransform >::TransformParametersAdaptor ( ) [inline, protected]

Definition at line 90 of file itkTransformParametersAdaptor.h.

template<class TTransform >
itk::TransformParametersAdaptor< TTransform >::~TransformParametersAdaptor ( ) [inline, protected]

Definition at line 91 of file itkTransformParametersAdaptor.h.

template<class TTransform >
itk::TransformParametersAdaptor< TTransform >::TransformParametersAdaptor ( const Self ) [private]

Member Function Documentation

template<class TTransform >
virtual void itk::TransformParametersAdaptor< TTransform >::AdaptTransformParameters ( ) [inline, virtual]
template<class TTransform >
virtual::itk::LightObject::Pointer itk::TransformParametersAdaptor< TTransform >::CreateAnother ( void  ) const [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.

Reimplemented in itk::BSplineSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor< TTransform >, itk::BSplineTransformParametersAdaptor< TTransform >, itk::DisplacementFieldTransformParametersAdaptor< TTransform >, itk::GaussianSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor< TTransform >, and itk::TimeVaryingVelocityFieldTransformParametersAdaptor< TTransform >.

template<class TTransform >
virtual const char* itk::TransformParametersAdaptor< TTransform >::GetNameOfClass ( ) const [virtual]
template<class TTransform >
virtual const ParametersType& itk::TransformParametersAdaptor< TTransform >::GetRequiredFixedParameters ( ) [virtual]

Get the fixed parameters

Reimplemented from itk::TransformParametersAdaptorBase< TTransform >.

template<class TTransform >
static Pointer itk::TransformParametersAdaptor< TTransform >::New ( ) [static]
template<class TTransform >
void itk::TransformParametersAdaptor< TTransform >::operator= ( const Self ) [private]
template<class TTransform >
void itk::TransformParametersAdaptor< TTransform >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const [inline, 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::TransformParametersAdaptorBase< TTransform >.

Reimplemented in itk::BSplineSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor< TTransform >, itk::BSplineTransformParametersAdaptor< TTransform >, and itk::GaussianSmoothingOnUpdateDisplacementFieldTransformParametersAdaptor< TTransform >.

Definition at line 93 of file itkTransformParametersAdaptor.h.

template<class TTransform >
virtual void itk::TransformParametersAdaptor< TTransform >::SetRequiredFixedParameters ( ParametersType  _arg) [virtual]

Set the fixed parameters

Reimplemented from itk::TransformParametersAdaptorBase< TTransform >.

template<class TTransform >
virtual void itk::TransformParametersAdaptor< TTransform >::SetTransform ( TransformType _arg) [virtual]

Set the transform to be adapted

Reimplemented from itk::TransformParametersAdaptorBase< TTransform >.


Member Data Documentation

template<class TTransform >
ParametersType itk::TransformParametersAdaptor< TTransform >::m_RequiredFixedParameters [protected]
template<class TTransform >
TransformPointer itk::TransformParametersAdaptor< TTransform >::m_Transform [protected]

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