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

#include <itkTransformParametersAdaptorBase.h>

+ Inheritance diagram for itk::TransformParametersAdaptorBase< TTransform >:
+ Collaboration diagram for itk::TransformParametersAdaptorBase< TTransform >:

List of all members.

Public Types

typedef SmartPointer< const SelfConstPointer
typedef
TransformType::ParametersType 
ParametersType
typedef ParametersType::ValueType ParametersValueType
typedef SmartPointer< SelfPointer
typedef
TransformParametersAdaptorBase 
Self
typedef Object Superclass
typedef TransformType::Pointer TransformPointer
typedef TTransform TransformType

Public Member Functions

virtual void AdaptTransformParameters ()=0
virtual const char * GetNameOfClass () const
virtual const ParametersTypeGetRequiredFixedParameters ()
virtual void SetRequiredFixedParameters (ParametersType _arg)
virtual void SetTransform (TransformType *_arg)

Protected Member Functions

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

Protected Attributes

ParametersType m_RequiredFixedParameters
TransformPointer m_Transform

Private Member Functions

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

Detailed Description

template<class TTransform>
class itk::TransformParametersAdaptorBase< 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 55 of file itkTransformParametersAdaptorBase.h.


Member Typedef Documentation

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

Constructor & Destructor Documentation

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

Definition at line 88 of file itkTransformParametersAdaptorBase.h.

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

Definition at line 89 of file itkTransformParametersAdaptorBase.h.

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

Member Function Documentation

template<class TTransform >
virtual void itk::TransformParametersAdaptorBase< TTransform >::AdaptTransformParameters ( ) [pure virtual]
template<class TTransform >
virtual const char* itk::TransformParametersAdaptorBase< TTransform >::GetNameOfClass ( ) const [virtual]
template<class TTransform >
virtual const ParametersType& itk::TransformParametersAdaptorBase< TTransform >::GetRequiredFixedParameters ( ) [virtual]

Get the fixed parameters

Reimplemented in itk::TransformParametersAdaptor< TTransform >.

template<class TTransform >
void itk::TransformParametersAdaptorBase< TTransform >::operator= ( const Self ) [private]
template<class TTransform >
void itk::TransformParametersAdaptorBase< 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::Object.

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

Definition at line 91 of file itkTransformParametersAdaptorBase.h.

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

Set the transform to be adapted

Reimplemented in itk::TransformParametersAdaptor< TTransform >.


Member Data Documentation

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

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