ITK
6.0.0
Insight Toolkit
|
#include <itkCompositeTransformIOHelper.h>
An adapter that adapts CompositeTransform into the TransformReader/Writer.
The stumbling block with fitting CompositeTransforms into the Transform hierarchy is that it encapsulates a list of itk::Transform, templated to match the dimension and scalar type of the CompositeTransform itself. But the Transform Reader/Writer uses instances of the superclass itk::TransformBase which is not templated.
This class handles this by hiding the conversion between a list of TransformBase and the queue of Transform. It handles the conversion in a cascade of template function invocations to match up the transform list with the particular instantiation of CompositeTransform.
Definition at line 48 of file itkCompositeTransformIOHelper.h.
Public Types | |
using | ConstTransformListType = typename TransformIOBaseTemplate< TParametersValueType >::ConstTransformListType |
using | ConstTransformPointer = typename TransformIOBaseTemplate< TParametersValueType >::ConstTransformPointer |
using | TransformListType = typename TransformIOBaseTemplate< TParametersValueType >::TransformListType |
using | TransformPointer = typename TransformIOBaseTemplate< TParametersValueType >::TransformPointer |
using | TransformType = typename TransformIOBaseTemplate< TParametersValueType >::TransformType |
Public Member Functions | |
ConstTransformListType & | GetTransformList (const TransformType *transform) |
void | SetTransformList (TransformType *transform, TransformListType &transformList) |
Private Member Functions | |
template<unsigned int VDimension> | |
int | BuildTransformList (const TransformType *transform) |
template<unsigned int VDimension> | |
int | InternalSetTransformList (TransformType *transform, TransformListType &transformList) |
Private Attributes | |
ConstTransformListType | m_TransformList |
using itk::CompositeTransformIOHelperTemplate< TParametersValueType >::ConstTransformListType = typename TransformIOBaseTemplate<TParametersValueType>::ConstTransformListType |
Definition at line 55 of file itkCompositeTransformIOHelper.h.
using itk::CompositeTransformIOHelperTemplate< TParametersValueType >::ConstTransformPointer = typename TransformIOBaseTemplate<TParametersValueType>::ConstTransformPointer |
Definition at line 54 of file itkCompositeTransformIOHelper.h.
using itk::CompositeTransformIOHelperTemplate< TParametersValueType >::TransformListType = typename TransformIOBaseTemplate<TParametersValueType>::TransformListType |
Definition at line 53 of file itkCompositeTransformIOHelper.h.
using itk::CompositeTransformIOHelperTemplate< TParametersValueType >::TransformPointer = typename TransformIOBaseTemplate<TParametersValueType>::TransformPointer |
Definition at line 52 of file itkCompositeTransformIOHelper.h.
using itk::CompositeTransformIOHelperTemplate< TParametersValueType >::TransformType = typename TransformIOBaseTemplate<TParametersValueType>::TransformType |
Definition at line 51 of file itkCompositeTransformIOHelper.h.
|
private |
Builds a list of TransformBase from the CompositeTransform's queue. A cascade of calls with different template parameters selects the correct concrete type for CompositeTransform.
ConstTransformListType & itk::CompositeTransformIOHelperTemplate< TParametersValueType >::GetTransformList | ( | const TransformType * | transform | ) |
from a composite transform, recover a TransformIOBase::ConstTransformList. This will re-build the list each time it is called, so it is best to call it once per CompositeTransform and access it through the ConstTransformListType reference, as any subsequent calls will rebuild the list and possibly invalidate any iterators on the list.
|
private |
Sets a CompositeTransform's TransformQueue from the TransformIO's list of TransformBase. Will throw an exception if the scalar type or dimension of the transform being added doesn't match that of the concrete CompositeTransform's type.
void itk::CompositeTransformIOHelperTemplate< TParametersValueType >::SetTransformList | ( | TransformType * | transform, |
TransformListType & | transformList | ||
) |
set a compositeTransform's transform list from a TransformIOABase::TransformList. If there is any mismatch between a transform being added to composite and the composite, this will throw an exception
|
private |
Definition at line 77 of file itkCompositeTransformIOHelper.h.