ITK  5.4.0
Insight Toolkit
Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Member Functions | Protected Attributes | Static Private Member Functions | Private Attributes | List of all members
itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet > Class Template Reference

#include <itkImageRegistrationMethodv4.h>

Detailed Description

template<typename TFixedImage, typename TMovingImage, typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
class itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >

Interface method for the current registration framework.

This interface method class encapsulates typical registration usage by incorporating all the necessary elements for performing a simple image registration between two images. This method also allows for multistage registration whereby each stage is characterize by possibly different transforms of and different image metrics. For example, many users will want to perform a linear registration followed by deformable registration where both stages are performed in multiple levels. Each level can be characterized by:

Multiple stages are handled by linking multiple instantiations of this class where the output transform is added to the optional composite transform input.

Transform adaptors: To accommodate new changes to the current ITK registration framework, we introduced the concept of transform adaptors. Whereas each stage is associated with a moving and, possibly, fixed transform, each level of each stage is defined by a transform adaptor which describes how to adapt the transform to the current level. For example, if one were to use the B-spline transform during a deformable registration stage, common practice is to increase the resolution of the B-spline mesh (or, analogously, the control point grid size) at each level. At each level, one would define the parameters of the B-spline transform adaptor at that level which increases the resolution from the previous level. For many transforms, such as affine, this concept of an adaptor may be nonsensical. For this reason, the base transform adaptor class does not do anything to the transform but merely passes it through. Each level of each stage must define a transform adaptor but, by default, the base adaptor class is assigned which, again, does not do anything to the transform. A special mention should be made of the transform adaptor at level 0 of any stage. Most likely, the user will not want to do anything to the transform as it enters into the given stage so typical use will be to assign the base adaptor class to level 0 of all stages but we leave that open to the user.

Output: The output is the updated transform.

Author
Nick Tustison
Brian Avants
Examples
Examples/RegistrationITKv4/DeformableRegistration12.cxx, Examples/RegistrationITKv4/DeformableRegistration4.cxx, Examples/RegistrationITKv4/DeformableRegistration6.cxx, Examples/RegistrationITKv4/DeformableRegistration7.cxx, Examples/RegistrationITKv4/DeformableRegistration8.cxx, Examples/RegistrationITKv4/ImageRegistration11.cxx, Examples/RegistrationITKv4/ImageRegistration6.cxx, Examples/RegistrationITKv4/MultiStageImageRegistration1.cxx, Examples/RegistrationITKv4/MultiStageImageRegistration2.cxx, SphinxExamples/src/Numerics/Optimizers/ExhaustiveOptimizer/Code.cxx, and SphinxExamples/src/Registration/Common/Perform2DTranslationRegistrationWithMeanSquares/Code.cxx.

Definition at line 117 of file itkImageRegistrationMethodv4.h.

+ Inheritance diagram for itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >:
+ Collaboration diagram for itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >:

Public Types

using CompositeTransformPointer = typename CompositeTransformType::Pointer
 
using CompositeTransformType = CompositeTransform< RealType, ImageDimension >
 
using ConstPointer = SmartPointer< const Self >
 
using DataObjectPointerArraySizeType = ProcessObject::DataObjectPointerArraySizeType
 
using DecoratedInitialTransformPointer = typename DecoratedInitialTransformType::Pointer
 
using DecoratedInitialTransformType = DataObjectDecorator< InitialTransformType >
 
using DecoratedOutputTransformPointer = typename DecoratedOutputTransformType::Pointer
 
using DecoratedOutputTransformType = DataObjectDecorator< OutputTransformType >
 
using DerivativeType = typename OutputTransformType::DerivativeType
 
using DerivativeValueType = typename DerivativeType::ValueType
 
using FixedImageConstPointer = typename FixedImageType::ConstPointer
 
using FixedImageMaskConstPointer = typename FixedImageMaskType::ConstPointer
 
using FixedImageMasksContainerType = std::vector< FixedImageMaskConstPointer >
 
using FixedImageMaskType = typename ImageMetricType::FixedImageMaskType
 
using FixedImagePointer = typename FixedImageType::Pointer
 
using FixedImagesContainerType = std::vector< FixedImageConstPointer >
 
using FixedImageType = TFixedImage
 
using ImageMetricType = ImageToImageMetricv4< FixedImageType, MovingImageType, VirtualImageType, RealType >
 
using InitialTransformPointer = typename InitialTransformType::Pointer
 
using InitialTransformType = Transform< RealType, ImageDimension, ImageDimension >
 
using MetricPointer = typename MetricType::Pointer
 
using MetricSamplePointSetType = typename ImageMetricType::FixedSampledPointSetType
 
using MetricSamplingPercentageArrayType = Array< RealType >
 
using MetricSamplingStrategyEnum = ImageRegistrationMethodv4Enums::MetricSamplingStrategy
 
using MetricType = ObjectToObjectMetricBaseTemplate< RealType >
 
using MovingImageConstPointer = typename MovingImageType::ConstPointer
 
using MovingImageMaskConstPointer = typename MovingImageMaskType::ConstPointer
 
using MovingImageMasksContainerType = std::vector< MovingImageMaskConstPointer >
 
using MovingImageMaskType = typename ImageMetricType::MovingImageMaskType
 
using MovingImagePointer = typename MovingImageType::Pointer
 
using MovingImagesContainerType = std::vector< MovingImageConstPointer >
 
using MovingImageType = TMovingImage
 
using MultiMetricType = ObjectToObjectMultiMetricv4< ImageDimension, ImageDimension, VirtualImageType, RealType >
 
using OptimizerPointer = typename OptimizerType::Pointer
 
using OptimizerType = ObjectToObjectOptimizerBaseTemplate< RealType >
 
using OptimizerWeightsType = typename OptimizerType::ScalesType
 
using OutputTransformPointer = typename OutputTransformType::Pointer
 
using OutputTransformType = TOutputTransform
 
using Pointer = SmartPointer< Self >
 
using PointSetConstPointer = typename PointSetType::ConstPointer
 
using PointSetMetricType = PointSetToPointSetMetricWithIndexv4< PointSetType, PointSetType, RealType >
 
using PointSetsContainerType = std::vector< PointSetConstPointer >
 
using PointSetType = TPointSet
 
using RealType = typename OutputTransformType::ScalarType
 
using Self = ImageRegistrationMethodv4
 
using ShrinkFactorsArrayType = Array< SizeValueType >
 
using ShrinkFactorsPerDimensionContainerType = typename ShrinkFilterType::ShrinkFactorsType
 
using ShrinkFilterType = ShrinkImageFilter< FixedImageType, VirtualImageType >
 
using SmoothingSigmasArrayType = Array< RealType >
 
using Superclass = ProcessObject
 
using TransformParametersAdaptorPointer = typename TransformParametersAdaptorType::Pointer
 
using TransformParametersAdaptorsContainerType = std::vector< TransformParametersAdaptorPointer >
 
using TransformParametersAdaptorType = TransformParametersAdaptorBase< InitialTransformType >
 
using VectorType = Vector< RealType, ImageDimension >
 
using VirtualImageBaseConstPointer = typename VirtualImageBaseType::ConstPointer
 
using VirtualImageBaseType = ImageBase< ImageDimension >
 
using VirtualImagePointer = typename VirtualImageType::Pointer
 
using VirtualImageType = TVirtualImage
 
- Public Types inherited from itk::ProcessObject
using ConstPointer = SmartPointer< const Self >
 
using DataObjectIdentifierType = DataObject::DataObjectIdentifierType
 
using DataObjectPointer = DataObject::Pointer
 
using DataObjectPointerArray = std::vector< DataObjectPointer >
 
using DataObjectPointerArraySizeType = DataObjectPointerArray::size_type
 
using MultiThreaderType = MultiThreaderBase
 
using NameArray = std::vector< DataObjectIdentifierType >
 
using Pointer = SmartPointer< Self >
 
using Self = ProcessObject
 
using Superclass = Object
 
- Public Types inherited from itk::Object
using ConstPointer = SmartPointer< const Self >
 
using Pointer = SmartPointer< Self >
 
using Self = Object
 
using Superclass = LightObject
 
- Public Types inherited from itk::LightObject
using ConstPointer = SmartPointer< const Self >
 
using Pointer = SmartPointer< Self >
 
using Self = LightObject
 

Public Member Functions

virtual const RealTypeGetCurrentConvergenceValue () const
 
virtual const SizeValueTypeGetCurrentIteration () const
 
virtual SizeValueType GetCurrentLevel () const
 
virtual const RealTypeGetCurrentMetricValue () const
 
virtual const bool & GetIsConverged () const
 
virtual OutputTransformTypeGetModifiableTransform ()
 
const char * GetNameOfClass () const override
 
virtual const OutputTransformTypeGetTransform () const
 
virtual DecoratedOutputTransformTypeGetTransformOutput ()
 
virtual const DecoratedOutputTransformTypeGetTransformOutput () const
 
void InitializeCenterOfLinearOutputTransform ()
 
DataObjectPointer MakeOutput (DataObjectPointerArraySizeType) override
 
virtual void SetFixedInitialTransformInput (const DataObjectDecorator< InitialTransformType > *_arg)
 
virtual void SetInitialTransformInput (const DataObjectDecorator< InitialTransformType > *_arg)
 
void SetMetricSamplingPercentage (const RealType)
 
virtual void SetMovingInitialTransformInput (const DataObjectDecorator< InitialTransformType > *_arg)
 
virtual void SetFixedImage (const FixedImageType *image)
 
virtual const FixedImageTypeGetFixedImage () const
 
virtual void SetFixedImage (SizeValueType, const FixedImageType *)
 
virtual const FixedImageTypeGetFixedImage (SizeValueType) const
 
virtual void SetMovingImage (const MovingImageType *image)
 
virtual const MovingImageTypeGetMovingImage () const
 
virtual void SetMovingImage (SizeValueType, const MovingImageType *)
 
virtual const MovingImageTypeGetMovingImage (SizeValueType) const
 
virtual void SetFixedPointSet (const PointSetType *pointSet)
 
virtual const PointSetTypeGetFixedPointSet () const
 
virtual void SetFixedPointSet (SizeValueType, const PointSetType *)
 
virtual const PointSetTypeGetFixedPointSet (SizeValueType) const
 
virtual void SetMovingPointSet (const PointSetType *pointSet)
 
virtual const PointSetTypeGetMovingPointSet () const
 
virtual void SetMovingPointSet (SizeValueType, const PointSetType *)
 
virtual const PointSetTypeGetMovingPointSet (SizeValueType) const
 
virtual void SetOptimizer (OptimizerType *_arg)
 
virtual OptimizerTypeGetModifiableOptimizer ()
 
void SetOptimizerWeights (OptimizerWeightsType &)
 
virtual OptimizerWeightsType GetOptimizerWeights () const
 
virtual void SetMetric (MetricType *_arg)
 
virtual MetricTypeGetModifiableMetric ()
 
virtual void SetMetricSamplingStrategy (const MetricSamplingStrategyEnum _arg)
 
virtual MetricSamplingStrategyEnum GetMetricSamplingStrategy () const
 
void MetricSamplingReinitializeSeed ()
 
void MetricSamplingReinitializeSeed (int seed)
 
virtual void SetMetricSamplingPercentagePerLevel (const MetricSamplingPercentageArrayType &samplingPercentages)
 
virtual MetricSamplingPercentageArrayType GetMetricSamplingPercentagePerLevel () const
 
void SetTransformParametersAdaptorsPerLevel (TransformParametersAdaptorsContainerType &)
 
const TransformParametersAdaptorsContainerTypeGetTransformParametersAdaptorsPerLevel () const
 
void SetNumberOfLevels (const SizeValueType)
 
virtual SizeValueType GetNumberOfLevels () const
 
void SetShrinkFactorsPerLevel (ShrinkFactorsArrayType factors)
 
ShrinkFactorsPerDimensionContainerType GetShrinkFactorsPerDimension (const unsigned int level) const
 
void SetShrinkFactorsPerDimension (unsigned int level, ShrinkFactorsPerDimensionContainerType factors)
 
virtual void SetSmoothingSigmasPerLevel (SmoothingSigmasArrayType _arg)
 
virtual SmoothingSigmasArrayType GetSmoothingSigmasPerLevel () const
 
virtual void SetSmoothingSigmasAreSpecifiedInPhysicalUnits (bool _arg)
 
virtual bool GetSmoothingSigmasAreSpecifiedInPhysicalUnits () const
 
virtual void SmoothingSigmasAreSpecifiedInPhysicalUnitsOn ()
 
virtual DecoratedOutputTransformTypeGetOutput ()
 
virtual const DecoratedOutputTransformTypeGetOutput () const
 
virtual void SetInPlace (bool _arg)
 
virtual bool GetInPlace () const
 
virtual void InPlaceOn ()
 
virtual void InitializeCenterOfLinearOutputTransformOn ()
 
virtual void SetInitializeCenterOfLinearOutputTransform (bool _arg)
 
virtual bool GetInitializeCenterOfLinearOutputTransform () const
 
- Public Member Functions inherited from itk::ProcessObject
virtual void AbortGenerateDataOn ()
 
virtual void EnlargeOutputRequestedRegion (DataObject *)
 
virtual const bool & GetAbortGenerateData () const
 
DataObjectPointerArray GetIndexedInputs ()
 
DataObjectPointerArray GetIndexedOutputs ()
 
NameArray GetInputNames () const
 
DataObjectPointerArray GetInputs ()
 
MultiThreaderTypeGetMultiThreader () const
 
DataObjectPointerArraySizeType GetNumberOfIndexedInputs () const
 
DataObjectPointerArraySizeType GetNumberOfIndexedOutputs () const
 
DataObjectPointerArraySizeType GetNumberOfInputs () const
 
DataObjectPointerArraySizeType GetNumberOfOutputs () const
 
virtual DataObjectPointerArraySizeType GetNumberOfValidRequiredInputs () const
 
NameArray GetOutputNames () const
 
DataObjectPointerArray GetOutputs ()
 
virtual float GetProgress () const
 
NameArray GetRequiredInputNames () const
 
bool HasInput (const DataObjectIdentifierType &key) const
 
bool HasOutput (const DataObjectIdentifierType &key) const
 
void IncrementProgress (float increment)
 
virtual DataObjectPointer MakeOutput (const DataObjectIdentifierType &)
 
virtual void PrepareOutputs ()
 
virtual void PropagateRequestedRegion (DataObject *output)
 
virtual void ResetPipeline ()
 
virtual void SetAbortGenerateData (bool _arg)
 
void SetMultiThreader (MultiThreaderType *threader)
 
virtual void Update ()
 
virtual void UpdateLargestPossibleRegion ()
 
virtual void UpdateOutputData (DataObject *output)
 
virtual void UpdateOutputInformation ()
 
void UpdateProgress (float progress)
 
virtual void SetReleaseDataFlag (bool val)
 
virtual bool GetReleaseDataFlag () const
 
void ReleaseDataFlagOn ()
 
void ReleaseDataFlagOff ()
 
virtual void SetReleaseDataBeforeUpdateFlag (bool _arg)
 
virtual const bool & GetReleaseDataBeforeUpdateFlag () const
 
virtual void ReleaseDataBeforeUpdateFlagOn ()
 
virtual void SetNumberOfWorkUnits (ThreadIdType _arg)
 
virtual const ThreadIdTypeGetNumberOfWorkUnits () const
 
- Public Member Functions inherited from itk::Object
unsigned long AddObserver (const EventObject &event, Command *)
 
unsigned long AddObserver (const EventObject &event, Command *) const
 
unsigned long AddObserver (const EventObject &event, std::function< void(const EventObject &)> function) const
 
LightObject::Pointer CreateAnother () const override
 
virtual void DebugOff () const
 
virtual void DebugOn () const
 
CommandGetCommand (unsigned long tag)
 
bool GetDebug () const
 
MetaDataDictionaryGetMetaDataDictionary ()
 
const MetaDataDictionaryGetMetaDataDictionary () const
 
virtual ModifiedTimeType GetMTime () const
 
virtual const TimeStampGetTimeStamp () const
 
bool HasObserver (const EventObject &event) const
 
void InvokeEvent (const EventObject &)
 
void InvokeEvent (const EventObject &) const
 
virtual void Modified () const
 
void Register () const override
 
void RemoveAllObservers ()
 
void RemoveObserver (unsigned long tag)
 
void SetDebug (bool debugFlag) const
 
void SetReferenceCount (int) override
 
void UnRegister () const noexcept override
 
void SetMetaDataDictionary (const MetaDataDictionary &rhs)
 
void SetMetaDataDictionary (MetaDataDictionary &&rrhs)
 
virtual void SetObjectName (std::string _arg)
 
virtual const std::string & GetObjectName () const
 
- Public Member Functions inherited from itk::LightObject
Pointer Clone () const
 
virtual void Delete ()
 
virtual int GetReferenceCount () const
 
void Print (std::ostream &os, Indent indent=0) const
 

Static Public Member Functions

static Pointer New ()
 
- Static Public Member Functions inherited from itk::Object
static bool GetGlobalWarningDisplay ()
 
static void GlobalWarningDisplayOff ()
 
static void GlobalWarningDisplayOn ()
 
static Pointer New ()
 
static void SetGlobalWarningDisplay (bool val)
 
- Static Public Member Functions inherited from itk::LightObject
static void BreakOnError ()
 
static Pointer New ()
 

Static Public Attributes

static constexpr unsigned int ImageDimension = TFixedImage::ImageDimension
 

Protected Member Functions

virtual void AllocateOutputs ()
 
void GenerateData () override
 
virtual VirtualImageBaseConstPointer GetCurrentLevelVirtualDomainImage ()
 
 ImageRegistrationMethodv4 ()
 
virtual void InitializeRegistrationAtEachLevel (const SizeValueType)
 
void PrintSelf (std::ostream &os, Indent indent) const override
 
virtual void SetMetricSamplePoints ()
 
 ~ImageRegistrationMethodv4 () override=default
 
- Protected Member Functions inherited from itk::ProcessObject
virtual void AddInput (DataObject *input)
 
void AddOptionalInputName (const DataObjectIdentifierType &)
 
void AddOptionalInputName (const DataObjectIdentifierType &, DataObjectPointerArraySizeType idx)
 
virtual void AddOutput (DataObject *output)
 
bool AddRequiredInputName (const DataObjectIdentifierType &)
 
bool AddRequiredInputName (const DataObjectIdentifierType &, DataObjectPointerArraySizeType idx)
 
virtual void CacheInputReleaseDataFlags ()
 
virtual void GenerateInputRequestedRegion ()
 
virtual void GenerateOutputInformation ()
 
virtual void GenerateOutputRequestedRegion (DataObject *output)
 
DataObjectGetInput (const DataObjectIdentifierType &key)
 
const DataObjectGetInput (const DataObjectIdentifierType &key) const
 
virtual const DataObjectPointerArraySizeTypeGetNumberOfRequiredInputs () const
 
virtual const DataObjectPointerArraySizeTypeGetNumberOfRequiredOutputs () const
 
bool IsIndexedInputName (const DataObjectIdentifierType &) const
 
bool IsIndexedOutputName (const DataObjectIdentifierType &) const
 
bool IsRequiredInputName (const DataObjectIdentifierType &) const
 
DataObjectPointerArraySizeType MakeIndexFromInputName (const DataObjectIdentifierType &name) const
 
DataObjectPointerArraySizeType MakeIndexFromOutputName (const DataObjectIdentifierType &name) const
 
DataObjectIdentifierType MakeNameFromInputIndex (DataObjectPointerArraySizeType idx) const
 
DataObjectIdentifierType MakeNameFromOutputIndex (DataObjectPointerArraySizeType idx) const
 
virtual void PopBackInput ()
 
virtual void PopFrontInput ()
 
 ProcessObject ()
 
virtual void PropagateResetPipeline ()
 
virtual void PushBackInput (const DataObject *input)
 
virtual void PushFrontInput (const DataObject *input)
 
virtual void ReleaseInputs ()
 
virtual void RemoveInput (const DataObjectIdentifierType &key)
 
virtual void RemoveInput (DataObjectPointerArraySizeType)
 
virtual void RemoveOutput (const DataObjectIdentifierType &key)
 
virtual void RemoveOutput (DataObjectPointerArraySizeType idx)
 
bool RemoveRequiredInputName (const DataObjectIdentifierType &)
 
virtual void RestoreInputReleaseDataFlags ()
 
virtual void SetInput (const DataObjectIdentifierType &key, DataObject *input)
 
virtual void SetNthInput (DataObjectPointerArraySizeType idx, DataObject *input)
 
virtual void SetNthOutput (DataObjectPointerArraySizeType idx, DataObject *output)
 
void SetNumberOfIndexedInputs (DataObjectPointerArraySizeType num)
 
void SetNumberOfIndexedOutputs (DataObjectPointerArraySizeType num)
 
virtual void SetNumberOfRequiredInputs (DataObjectPointerArraySizeType)
 
virtual void SetNumberOfRequiredOutputs (DataObjectPointerArraySizeType _arg)
 
virtual void SetOutput (const DataObjectIdentifierType &name, DataObject *output)
 
virtual void SetPrimaryInput (DataObject *object)
 
virtual void SetPrimaryOutput (DataObject *object)
 
void SetRequiredInputNames (const NameArray &)
 
virtual void VerifyInputInformation () ITKv5_CONST
 
virtual void VerifyPreconditions () ITKv5_CONST
 
 ~ProcessObject () override
 
DataObjectGetInput (DataObjectPointerArraySizeType idx)
 
const DataObjectGetInput (DataObjectPointerArraySizeType idx) const
 
DataObjectGetPrimaryInput ()
 
const DataObjectGetPrimaryInput () const
 
virtual void SetPrimaryInputName (const DataObjectIdentifierType &key)
 
virtual const char * GetPrimaryInputName () const
 
DataObjectGetOutput (const DataObjectIdentifierType &key)
 
const DataObjectGetOutput (const DataObjectIdentifierType &key) const
 
virtual void SetPrimaryOutputName (const DataObjectIdentifierType &key)
 
virtual const char * GetPrimaryOutputName () const
 
DataObjectGetOutput (DataObjectPointerArraySizeType i)
 
const DataObjectGetOutput (DataObjectPointerArraySizeType i) const
 
DataObjectGetPrimaryOutput ()
 
const DataObjectGetPrimaryOutput () const
 
virtual bool GetThreaderUpdateProgress () const
 
virtual void ThreaderUpdateProgressOn ()
 
virtual void SetThreaderUpdateProgress (bool arg)
 
- Protected Member Functions inherited from itk::Object
 Object ()
 
bool PrintObservers (std::ostream &os, Indent indent) const
 
virtual void SetTimeStamp (const TimeStamp &timeStamp)
 
 ~Object () override
 
- Protected Member Functions inherited from itk::LightObject
virtual LightObject::Pointer InternalClone () const
 
 LightObject ()
 
virtual void PrintHeader (std::ostream &os, Indent indent) const
 
virtual void PrintTrailer (std::ostream &os, Indent indent) const
 
virtual ~LightObject ()
 

Protected Attributes

CompositeTransformPointer m_CompositeTransform {}
 
RealType m_CurrentConvergenceValue {}
 
SizeValueType m_CurrentIteration {}
 
SizeValueType m_CurrentLevel {}
 
RealType m_CurrentMetricValue {}
 
int m_CurrentRandomSeed {}
 
int m_FirstImageMetricIndex {}
 
FixedImageMasksContainerType m_FixedImageMasks {}
 
PointSetsContainerType m_FixedPointSets {}
 
FixedImagesContainerType m_FixedSmoothImages {}
 
bool m_IsConverged {}
 
MetricPointer m_Metric {}
 
MetricSamplingPercentageArrayType m_MetricSamplingPercentagePerLevel {}
 
MetricSamplingStrategyEnum m_MetricSamplingStrategy {}
 
MovingImageMasksContainerType m_MovingImageMasks {}
 
PointSetsContainerType m_MovingPointSets {}
 
MovingImagesContainerType m_MovingSmoothImages {}
 
SizeValueType m_NumberOfFixedObjects {}
 
SizeValueType m_NumberOfLevels { 0 }
 
SizeValueType m_NumberOfMetrics {}
 
SizeValueType m_NumberOfMovingObjects {}
 
OptimizerPointer m_Optimizer {}
 
OptimizerWeightsType m_OptimizerWeights {}
 
bool m_OptimizerWeightsAreIdentity {}
 
OutputTransformPointer m_OutputTransform {}
 
int m_RandomSeed {}
 
bool m_ReseedIterator {}
 
std::vector< ShrinkFactorsPerDimensionContainerTypem_ShrinkFactorsPerLevel {}
 
bool m_SmoothingSigmasAreSpecifiedInPhysicalUnits {}
 
SmoothingSigmasArrayType m_SmoothingSigmasPerLevel {}
 
TransformParametersAdaptorsContainerType m_TransformParametersAdaptorsPerLevel {}
 
VirtualImagePointer m_VirtualDomainImage {}
 
- Protected Attributes inherited from itk::ProcessObject
TimeStamp m_OutputInformationMTime {}
 
bool m_Updating {}
 
- Protected Attributes inherited from itk::LightObject
std::atomic< int > m_ReferenceCount {}
 

Static Private Member Functions

static void MakeOutputTransform (SmartPointer< InitialTransformType > &ptr)
 
template<typename TTransform >
static void MakeOutputTransform (SmartPointer< TTransform > &ptr)
 

Private Attributes

bool m_InitializeCenterOfLinearOutputTransform {}
 
bool m_InPlace {}
 

Additional Inherited Members

- Static Protected Member Functions inherited from itk::ProcessObject
static constexpr float progressFixedToFloat (uint32_t fixed)
 
static uint32_t progressFloatToFixed (float f)
 

Member Typedef Documentation

◆ CompositeTransformPointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::CompositeTransformPointer = typename CompositeTransformType::Pointer

Definition at line 162 of file itkImageRegistrationMethodv4.h.

◆ CompositeTransformType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::CompositeTransformType = CompositeTransform<RealType, ImageDimension>

Definition at line 161 of file itkImageRegistrationMethodv4.h.

◆ ConstPointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::ConstPointer = SmartPointer<const Self>

Definition at line 126 of file itkImageRegistrationMethodv4.h.

◆ DataObjectPointerArraySizeType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::DataObjectPointerArraySizeType = ProcessObject::DataObjectPointerArraySizeType

Make a DataObject of the correct type to be used as the specified output.

Definition at line 454 of file itkImageRegistrationMethodv4.h.

◆ DecoratedInitialTransformPointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::DecoratedInitialTransformPointer = typename DecoratedInitialTransformType::Pointer

Definition at line 192 of file itkImageRegistrationMethodv4.h.

◆ DecoratedInitialTransformType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::DecoratedInitialTransformType = DataObjectDecorator<InitialTransformType>

Definition at line 191 of file itkImageRegistrationMethodv4.h.

◆ DecoratedOutputTransformPointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::DecoratedOutputTransformPointer = typename DecoratedOutputTransformType::Pointer

Definition at line 190 of file itkImageRegistrationMethodv4.h.

◆ DecoratedOutputTransformType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::DecoratedOutputTransformType = DataObjectDecorator<OutputTransformType>

Type for the output: Using Decorator pattern for enabling the transform to be passed in the data pipeline

Definition at line 189 of file itkImageRegistrationMethodv4.h.

◆ DerivativeType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::DerivativeType = typename OutputTransformType::DerivativeType

Definition at line 155 of file itkImageRegistrationMethodv4.h.

◆ DerivativeValueType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::DerivativeValueType = typename DerivativeType::ValueType

Definition at line 156 of file itkImageRegistrationMethodv4.h.

◆ FixedImageConstPointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::FixedImageConstPointer = typename FixedImageType::ConstPointer

Definition at line 140 of file itkImageRegistrationMethodv4.h.

◆ FixedImageMaskConstPointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::FixedImageMaskConstPointer = typename FixedImageMaskType::ConstPointer

Definition at line 179 of file itkImageRegistrationMethodv4.h.

◆ FixedImageMasksContainerType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::FixedImageMasksContainerType = std::vector<FixedImageMaskConstPointer>

Definition at line 180 of file itkImageRegistrationMethodv4.h.

◆ FixedImageMaskType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::FixedImageMaskType = typename ImageMetricType::FixedImageMaskType

Definition at line 178 of file itkImageRegistrationMethodv4.h.

◆ FixedImagePointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::FixedImagePointer = typename FixedImageType::Pointer

Definition at line 139 of file itkImageRegistrationMethodv4.h.

◆ FixedImagesContainerType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::FixedImagesContainerType = std::vector<FixedImageConstPointer>

Definition at line 141 of file itkImageRegistrationMethodv4.h.

◆ FixedImageType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::FixedImageType = TFixedImage

Input type alias for the images and transforms.

Definition at line 138 of file itkImageRegistrationMethodv4.h.

◆ ImageMetricType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::ImageMetricType = ImageToImageMetricv4<FixedImageType, MovingImageType, VirtualImageType, RealType>

Definition at line 175 of file itkImageRegistrationMethodv4.h.

◆ InitialTransformPointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::InitialTransformPointer = typename InitialTransformType::Pointer

Definition at line 159 of file itkImageRegistrationMethodv4.h.

◆ InitialTransformType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::InitialTransformType = Transform<RealType, ImageDimension, ImageDimension>

Definition at line 158 of file itkImageRegistrationMethodv4.h.

◆ MetricPointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MetricPointer = typename MetricType::Pointer

Definition at line 165 of file itkImageRegistrationMethodv4.h.

◆ MetricSamplePointSetType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MetricSamplePointSetType = typename ImageMetricType::FixedSampledPointSetType

Definition at line 224 of file itkImageRegistrationMethodv4.h.

◆ MetricSamplingPercentageArrayType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MetricSamplingPercentageArrayType = Array<RealType>

Definition at line 200 of file itkImageRegistrationMethodv4.h.

◆ MetricSamplingStrategyEnum

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MetricSamplingStrategyEnum = ImageRegistrationMethodv4Enums::MetricSamplingStrategy

Definition at line 214 of file itkImageRegistrationMethodv4.h.

◆ MetricType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MetricType = ObjectToObjectMetricBaseTemplate<RealType>

Definition at line 164 of file itkImageRegistrationMethodv4.h.

◆ MovingImageConstPointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MovingImageConstPointer = typename MovingImageType::ConstPointer

Definition at line 144 of file itkImageRegistrationMethodv4.h.

◆ MovingImageMaskConstPointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MovingImageMaskConstPointer = typename MovingImageMaskType::ConstPointer

Definition at line 182 of file itkImageRegistrationMethodv4.h.

◆ MovingImageMasksContainerType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MovingImageMasksContainerType = std::vector<MovingImageMaskConstPointer>

Definition at line 183 of file itkImageRegistrationMethodv4.h.

◆ MovingImageMaskType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MovingImageMaskType = typename ImageMetricType::MovingImageMaskType

Definition at line 181 of file itkImageRegistrationMethodv4.h.

◆ MovingImagePointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MovingImagePointer = typename MovingImageType::Pointer

Definition at line 143 of file itkImageRegistrationMethodv4.h.

◆ MovingImagesContainerType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MovingImagesContainerType = std::vector<MovingImageConstPointer>

Definition at line 145 of file itkImageRegistrationMethodv4.h.

◆ MovingImageType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MovingImageType = TMovingImage

Definition at line 142 of file itkImageRegistrationMethodv4.h.

◆ MultiMetricType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MultiMetricType = ObjectToObjectMultiMetricv4<ImageDimension, ImageDimension, VirtualImageType, RealType>

Definition at line 174 of file itkImageRegistrationMethodv4.h.

◆ OptimizerPointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::OptimizerPointer = typename OptimizerType::Pointer

Definition at line 209 of file itkImageRegistrationMethodv4.h.

◆ OptimizerType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::OptimizerType = ObjectToObjectOptimizerBaseTemplate<RealType>

Type of the optimizer.

Definition at line 208 of file itkImageRegistrationMethodv4.h.

◆ OptimizerWeightsType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::OptimizerWeightsType = typename OptimizerType::ScalesType

Weights type for the optimizer.

Definition at line 212 of file itkImageRegistrationMethodv4.h.

◆ OutputTransformPointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::OutputTransformPointer = typename OutputTransformType::Pointer

Definition at line 153 of file itkImageRegistrationMethodv4.h.

◆ OutputTransformType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::OutputTransformType = TOutputTransform

Metric and transform type alias

Definition at line 152 of file itkImageRegistrationMethodv4.h.

◆ Pointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::Pointer = SmartPointer<Self>

Definition at line 125 of file itkImageRegistrationMethodv4.h.

◆ PointSetConstPointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::PointSetConstPointer = typename PointSetType::ConstPointer

Definition at line 148 of file itkImageRegistrationMethodv4.h.

◆ PointSetMetricType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::PointSetMetricType = PointSetToPointSetMetricWithIndexv4<PointSetType, PointSetType, RealType>

Definition at line 176 of file itkImageRegistrationMethodv4.h.

◆ PointSetsContainerType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::PointSetsContainerType = std::vector<PointSetConstPointer>

Definition at line 149 of file itkImageRegistrationMethodv4.h.

◆ PointSetType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::PointSetType = TPointSet

Definition at line 147 of file itkImageRegistrationMethodv4.h.

◆ RealType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::RealType = typename OutputTransformType::ScalarType

Definition at line 154 of file itkImageRegistrationMethodv4.h.

◆ Self

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::Self = ImageRegistrationMethodv4

Standard class type aliases.

Definition at line 123 of file itkImageRegistrationMethodv4.h.

◆ ShrinkFactorsArrayType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::ShrinkFactorsArrayType = Array<SizeValueType>

Definition at line 197 of file itkImageRegistrationMethodv4.h.

◆ ShrinkFactorsPerDimensionContainerType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::ShrinkFactorsPerDimensionContainerType = typename ShrinkFilterType::ShrinkFactorsType

Definition at line 195 of file itkImageRegistrationMethodv4.h.

◆ ShrinkFilterType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::ShrinkFilterType = ShrinkImageFilter<FixedImageType, VirtualImageType>

Definition at line 194 of file itkImageRegistrationMethodv4.h.

◆ SmoothingSigmasArrayType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SmoothingSigmasArrayType = Array<RealType>

Definition at line 199 of file itkImageRegistrationMethodv4.h.

◆ Superclass

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::Superclass = ProcessObject

Definition at line 124 of file itkImageRegistrationMethodv4.h.

◆ TransformParametersAdaptorPointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::TransformParametersAdaptorPointer = typename TransformParametersAdaptorType::Pointer

Definition at line 204 of file itkImageRegistrationMethodv4.h.

◆ TransformParametersAdaptorsContainerType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::TransformParametersAdaptorsContainerType = std::vector<TransformParametersAdaptorPointer>

Definition at line 205 of file itkImageRegistrationMethodv4.h.

◆ TransformParametersAdaptorType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::TransformParametersAdaptorType = TransformParametersAdaptorBase<InitialTransformType>

Transform adaptor type alias

Definition at line 203 of file itkImageRegistrationMethodv4.h.

◆ VectorType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::VectorType = Vector<RealType, ImageDimension>

Definition at line 167 of file itkImageRegistrationMethodv4.h.

◆ VirtualImageBaseConstPointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::VirtualImageBaseConstPointer = typename VirtualImageBaseType::ConstPointer

Definition at line 172 of file itkImageRegistrationMethodv4.h.

◆ VirtualImageBaseType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::VirtualImageBaseType = ImageBase<ImageDimension>

Definition at line 171 of file itkImageRegistrationMethodv4.h.

◆ VirtualImagePointer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::VirtualImagePointer = typename VirtualImageType::Pointer

Definition at line 170 of file itkImageRegistrationMethodv4.h.

◆ VirtualImageType

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
using itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::VirtualImageType = TVirtualImage

Definition at line 169 of file itkImageRegistrationMethodv4.h.

Constructor & Destructor Documentation

◆ ImageRegistrationMethodv4()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::ImageRegistrationMethodv4 ( )
protected

◆ ~ImageRegistrationMethodv4()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::~ImageRegistrationMethodv4 ( )
overrideprotecteddefault

Member Function Documentation

◆ AllocateOutputs()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::AllocateOutputs ( )
protectedvirtual

◆ GenerateData()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GenerateData ( )
overrideprotectedvirtual

◆ GetCurrentConvergenceValue()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual const RealType& itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetCurrentConvergenceValue ( ) const
virtual

Get the current convergence value. This is a helper function for reporting observations.

◆ GetCurrentIteration()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual const SizeValueType& itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetCurrentIteration ( ) const
virtual

Get the current iteration. This is a helper function for reporting observations.

◆ GetCurrentLevel()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual SizeValueType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetCurrentLevel ( ) const
virtual

Get the current level. This is a helper function for reporting observations.

◆ GetCurrentLevelVirtualDomainImage()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual VirtualImageBaseConstPointer itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetCurrentLevelVirtualDomainImage ( )
protectedvirtual

Get the virtual domain image from the metric(s)

◆ GetCurrentMetricValue()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual const RealType& itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetCurrentMetricValue ( ) const
virtual

◆ GetFixedImage() [1/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual const FixedImageType* itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetFixedImage ( ) const
inlinevirtual

Set/get the fixed images.

Definition at line 233 of file itkImageRegistrationMethodv4.h.

◆ GetFixedImage() [2/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual const FixedImageType* itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetFixedImage ( SizeValueType  ) const
virtual

Set/get the fixed images.

◆ GetFixedPointSet() [1/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual const PointSetType* itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetFixedPointSet ( ) const
inlinevirtual

Set/get the fixed point sets.

Definition at line 265 of file itkImageRegistrationMethodv4.h.

◆ GetFixedPointSet() [2/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual const PointSetType* itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetFixedPointSet ( SizeValueType  ) const
virtual

Set/get the fixed point sets.

◆ GetInitializeCenterOfLinearOutputTransform()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual bool itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetInitializeCenterOfLinearOutputTransform ( ) const
virtual

Initialize the current linear transform to be optimized with the center of the previous transform in the queue. This provides a much better initialization than the default origin.

◆ GetInPlace()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual bool itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetInPlace ( ) const
virtual

Request that the InitialTransform be grafted onto the output, there by not creating a copy.

◆ GetIsConverged()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual const bool& itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetIsConverged ( ) const
virtual

Get the current convergence state per level. This is a helper function for reporting observations.

◆ GetMetricSamplingPercentagePerLevel()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual MetricSamplingPercentageArrayType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetMetricSamplingPercentagePerLevel ( ) const
virtual

Set the metric sampling percentage. Valid values are in (0.0,1.0].

◆ GetMetricSamplingStrategy()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual MetricSamplingStrategyEnum itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetMetricSamplingStrategy ( ) const
virtual

Set/Get the metric sampling strategy.

◆ GetModifiableMetric()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual MetricType* itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetModifiableMetric ( )
virtual

Set/Get the metric.

◆ GetModifiableOptimizer()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual OptimizerType* itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetModifiableOptimizer ( )
virtual

Set/Get the optimizer.

◆ GetModifiableTransform()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual OutputTransformType* itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetModifiableTransform ( )
virtual

◆ GetMovingImage() [1/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual const MovingImageType* itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetMovingImage ( ) const
inlinevirtual

Set the moving images.

Definition at line 249 of file itkImageRegistrationMethodv4.h.

◆ GetMovingImage() [2/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual const MovingImageType* itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetMovingImage ( SizeValueType  ) const
virtual

Set the moving images.

◆ GetMovingPointSet() [1/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual const PointSetType* itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetMovingPointSet ( ) const
inlinevirtual

Set the moving point sets.

Definition at line 281 of file itkImageRegistrationMethodv4.h.

◆ GetMovingPointSet() [2/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual const PointSetType* itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetMovingPointSet ( SizeValueType  ) const
virtual

Set the moving point sets.

◆ GetNameOfClass()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
const char* itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetNameOfClass ( ) const
overridevirtual

◆ GetNumberOfLevels()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual SizeValueType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetNumberOfLevels ( ) const
virtual

Set/Get the number of multi-resolution levels. In setting the number of levels we need to set the following for each level:

  • shrink factors for the virtual domain
  • sigma smoothing parameter
  • transform adaptor with specific parameters for the specified level

◆ GetOptimizerWeights()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual OptimizerWeightsType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetOptimizerWeights ( ) const
virtual

Set/Get the optimizer weights. Allows setting of a per-local-parameter weighting array. If unset, the weights are treated as identity. Weights are used to mask out a particular parameter during optimization to hold it constant. Or they may be used to apply another kind of prior knowledge. The size of the weights must be equal to the number of the local transformation parameters.

◆ GetOutput() [1/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual DecoratedOutputTransformType* itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetOutput ( )
virtual

Return the transform resulting from the registration process.

◆ GetOutput() [2/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual const DecoratedOutputTransformType* itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetOutput ( ) const
virtual

Return the transform resulting from the registration process.

◆ GetShrinkFactorsPerDimension()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
ShrinkFactorsPerDimensionContainerType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetShrinkFactorsPerDimension ( const unsigned int  level) const
inline

Get the shrink factors for a specific level.

Definition at line 410 of file itkImageRegistrationMethodv4.h.

◆ GetSmoothingSigmasAreSpecifiedInPhysicalUnits()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual bool itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetSmoothingSigmasAreSpecifiedInPhysicalUnits ( ) const
virtual

Set/Get whether to specify the smoothing sigmas for each level in physical units (default) or in terms of voxels.

◆ GetSmoothingSigmasPerLevel()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual SmoothingSigmasArrayType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetSmoothingSigmasPerLevel ( ) const
virtual

Set/Get the smoothing sigmas for each level. At each resolution level, a gaussian smoothing filter (specifically, the itkDiscreteGaussianImageFilter) is applied. Sigma values are specified according to the option m_SmoothingSigmasAreSpecifiedInPhysicalUnits.

◆ GetTransform()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual const OutputTransformType* itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetTransform ( ) const
virtual

◆ GetTransformOutput() [1/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual DecoratedOutputTransformType* itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetTransformOutput ( )
inlinevirtual

Definition at line 466 of file itkImageRegistrationMethodv4.h.

◆ GetTransformOutput() [2/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual const DecoratedOutputTransformType* itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetTransformOutput ( ) const
inlinevirtual

Definition at line 471 of file itkImageRegistrationMethodv4.h.

◆ GetTransformParametersAdaptorsPerLevel()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
const TransformParametersAdaptorsContainerType& itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::GetTransformParametersAdaptorsPerLevel ( ) const

Set/Get the transform adaptors.

◆ InitializeCenterOfLinearOutputTransform()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::InitializeCenterOfLinearOutputTransform ( )

We try to initialize the center of a linear transform (specifically those derived from itk::MatrixOffsetTransformBase). There are a number of checks that we need to make to account for all possible scenarios: 1) we check to make sure the m_OutputTransform is of the appropriate type such that it makes sense to try to center the transform. Local transforms such as SyN and B-spline do not need to be "centered", 2) we check to make sure the composite transform (to which we'll add the m_OutputTransform) is not empty, 3) we look for the first previous transform which has a center parameter, (which, presumably, been optimized beforehand), and

◆ InitializeCenterOfLinearOutputTransformOn()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::InitializeCenterOfLinearOutputTransformOn ( )
virtual

Initialize the current linear transform to be optimized with the center of the previous transform in the queue. This provides a much better initialization than the default origin.

◆ InitializeRegistrationAtEachLevel()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::InitializeRegistrationAtEachLevel ( const  SizeValueType)
protectedvirtual

◆ InPlaceOn()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::InPlaceOn ( )
virtual

Request that the InitialTransform be grafted onto the output, there by not creating a copy.

◆ MakeOutput()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
DataObjectPointer itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MakeOutput ( DataObjectPointerArraySizeType  idx)
overridevirtual

Make a DataObject of the correct type to used as the specified output.

Every ProcessObject subclass must be able to create a DataObject that can be used as a specified output. This method is automatically called when DataObject::DisconnectPipeline() is called. DataObject::DisconnectPipeline, disconnects a data object from being an output of its current source. When the data object is disconnected, the ProcessObject needs to construct a replacement output data object so that the ProcessObject is in a valid state. So DataObject::DisconnectPipeline eventually calls ProcessObject::MakeOutput. Note that MakeOutput always returns a itkSmartPointer to a DataObject. ImageSource and MeshSource override this method to create the correct type of image and mesh respectively. If a filter has multiple outputs of different types, then that filter must provide an implementation of MakeOutput().

Reimplemented from itk::ProcessObject.

◆ MakeOutputTransform() [1/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
static void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MakeOutputTransform ( SmartPointer< InitialTransformType > &  ptr)
inlinestaticprivate

◆ MakeOutputTransform() [2/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
template<typename TTransform >
static void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MakeOutputTransform ( SmartPointer< TTransform > &  ptr)
inlinestaticprivate

Definition at line 606 of file itkImageRegistrationMethodv4.h.

References New().

◆ MetricSamplingReinitializeSeed() [1/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MetricSamplingReinitializeSeed ( )

Reinitialize the seed for the random number generators that select the samples for some metric sampling strategies.

By initializing the random number generator seed to a value the same deterministic sampling will be used each Update execution. On the other hand, calling the method MetricSamplingReinitializeSeed() without arguments will use the wall clock in order to have pseudo-random initialization of the seeds. This will indeed increase the non-deterministic behavior of the metric.

◆ MetricSamplingReinitializeSeed() [2/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::MetricSamplingReinitializeSeed ( int  seed)

Reinitialize the seed for the random number generators that select the samples for some metric sampling strategies.

By initializing the random number generator seed to a value the same deterministic sampling will be used each Update execution. On the other hand, calling the method MetricSamplingReinitializeSeed() without arguments will use the wall clock in order to have pseudo-random initialization of the seeds. This will indeed increase the non-deterministic behavior of the metric.

◆ New()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
static Pointer itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::New ( )
static

Method for creation through the object factory.

◆ PrintSelf()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const
overrideprotectedvirtual

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.

Reimplemented in itk::TimeVaryingBSplineVelocityFieldImageRegistrationMethod< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >, itk::SyNImageRegistrationMethod< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >, and itk::TimeVaryingVelocityFieldImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >.

◆ SetFixedImage() [1/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetFixedImage ( const FixedImageType image)
inlinevirtual

Set/get the fixed images.

Definition at line 228 of file itkImageRegistrationMethodv4.h.

◆ SetFixedImage() [2/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetFixedImage ( SizeValueType  ,
const FixedImageType  
)
virtual

Set/get the fixed images.

◆ SetFixedInitialTransformInput()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetFixedInitialTransformInput ( const DataObjectDecorator< InitialTransformType > *  _arg)
virtual

Set/Get the initial fixed transform.

◆ SetFixedPointSet() [1/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetFixedPointSet ( const PointSetType pointSet)
inlinevirtual

Set/get the fixed point sets.

Definition at line 260 of file itkImageRegistrationMethodv4.h.

◆ SetFixedPointSet() [2/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetFixedPointSet ( SizeValueType  ,
const PointSetType  
)
virtual

Set/get the fixed point sets.

◆ SetInitializeCenterOfLinearOutputTransform()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetInitializeCenterOfLinearOutputTransform ( bool  _arg)
virtual

Initialize the current linear transform to be optimized with the center of the previous transform in the queue. This provides a much better initialization than the default origin.

◆ SetInitialTransformInput()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetInitialTransformInput ( const DataObjectDecorator< InitialTransformType > *  _arg)
virtual

Set/Get the initial transform to be optimized

This transform is composed with the MovingInitialTransform to specify the initial transformation from the moving image to the virtual image. It is used for the default parameters, and can be use to specify the transform type.

If the filter has "InPlace" set then this transform will be the output transform object or "grafted" to the output. Otherwise, this InitialTransform will be deep copied or "cloned" to the output.

If this parameter is not set then a default constructed output transform is used.

◆ SetInPlace()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetInPlace ( bool  _arg)
virtual

Request that the InitialTransform be grafted onto the output, there by not creating a copy.

◆ SetMetric()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetMetric ( MetricType _arg)
virtual

Set/Get the metric.

◆ SetMetricSamplePoints()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetMetricSamplePoints ( )
protectedvirtual

Set the metric sample points.

◆ SetMetricSamplingPercentage()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetMetricSamplingPercentage ( const  RealType)

Set the metric sampling percentage. Valid values are in (0.0, 1.0]

◆ SetMetricSamplingPercentagePerLevel()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetMetricSamplingPercentagePerLevel ( const MetricSamplingPercentageArrayType samplingPercentages)
virtual

Set the metric sampling percentage. Valid values are in (0.0,1.0].

◆ SetMetricSamplingStrategy()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetMetricSamplingStrategy ( const MetricSamplingStrategyEnum  _arg)
virtual

Set/Get the metric sampling strategy.

◆ SetMovingImage() [1/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetMovingImage ( const MovingImageType image)
inlinevirtual

Set the moving images.

Definition at line 244 of file itkImageRegistrationMethodv4.h.

◆ SetMovingImage() [2/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetMovingImage ( SizeValueType  ,
const MovingImageType  
)
virtual

Set the moving images.

◆ SetMovingInitialTransformInput()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetMovingInitialTransformInput ( const DataObjectDecorator< InitialTransformType > *  _arg)
virtual

Set/Get the initial moving transform.

◆ SetMovingPointSet() [1/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetMovingPointSet ( const PointSetType pointSet)
inlinevirtual

Set the moving point sets.

Definition at line 276 of file itkImageRegistrationMethodv4.h.

◆ SetMovingPointSet() [2/2]

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetMovingPointSet ( SizeValueType  ,
const PointSetType  
)
virtual

Set the moving point sets.

◆ SetNumberOfLevels()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetNumberOfLevels ( const  SizeValueType)

Set/Get the number of multi-resolution levels. In setting the number of levels we need to set the following for each level:

  • shrink factors for the virtual domain
  • sigma smoothing parameter
  • transform adaptor with specific parameters for the specified level

◆ SetOptimizer()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetOptimizer ( OptimizerType _arg)
virtual

Set/Get the optimizer.

◆ SetOptimizerWeights()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetOptimizerWeights ( OptimizerWeightsType )

Set/Get the optimizer weights. Allows setting of a per-local-parameter weighting array. If unset, the weights are treated as identity. Weights are used to mask out a particular parameter during optimization to hold it constant. Or they may be used to apply another kind of prior knowledge. The size of the weights must be equal to the number of the local transformation parameters.

◆ SetShrinkFactorsPerDimension()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetShrinkFactorsPerDimension ( unsigned int  level,
ShrinkFactorsPerDimensionContainerType  factors 
)
inline

Set the shrink factors for a specific level for each dimension.

Definition at line 424 of file itkImageRegistrationMethodv4.h.

◆ SetShrinkFactorsPerLevel()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetShrinkFactorsPerLevel ( ShrinkFactorsArrayType  factors)
inline

Set the shrink factors for each level where each level has a constant shrink factor for each dimension. For example, input to the function of factors = [4,2,1] will shrink the image in every dimension by 4 the first level, then by 2 at the second level, then the original resolution for the final level (uses the itkShrinkImageFilter).

Definition at line 395 of file itkImageRegistrationMethodv4.h.

References itk::Array< TValue >::Size().

◆ SetSmoothingSigmasAreSpecifiedInPhysicalUnits()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetSmoothingSigmasAreSpecifiedInPhysicalUnits ( bool  _arg)
virtual

Set/Get whether to specify the smoothing sigmas for each level in physical units (default) or in terms of voxels.

◆ SetSmoothingSigmasPerLevel()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetSmoothingSigmasPerLevel ( SmoothingSigmasArrayType  _arg)
virtual

Set/Get the smoothing sigmas for each level. At each resolution level, a gaussian smoothing filter (specifically, the itkDiscreteGaussianImageFilter) is applied. Sigma values are specified according to the option m_SmoothingSigmasAreSpecifiedInPhysicalUnits.

◆ SetTransformParametersAdaptorsPerLevel()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SetTransformParametersAdaptorsPerLevel ( TransformParametersAdaptorsContainerType )

Set/Get the transform adaptors.

◆ SmoothingSigmasAreSpecifiedInPhysicalUnitsOn()

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
virtual void itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::SmoothingSigmasAreSpecifiedInPhysicalUnitsOn ( )
virtual

Set/Get whether to specify the smoothing sigmas for each level in physical units (default) or in terms of voxels.

Member Data Documentation

◆ ImageDimension

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
constexpr unsigned int itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::ImageDimension = TFixedImage::ImageDimension
staticconstexpr

ImageDimension constants

Definition at line 132 of file itkImageRegistrationMethodv4.h.

◆ m_CompositeTransform

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
CompositeTransformPointer itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_CompositeTransform {}
protected

Definition at line 591 of file itkImageRegistrationMethodv4.h.

◆ m_CurrentConvergenceValue

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
RealType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_CurrentConvergenceValue {}
protected

Definition at line 558 of file itkImageRegistrationMethodv4.h.

◆ m_CurrentIteration

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
SizeValueType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_CurrentIteration {}
protected

Definition at line 556 of file itkImageRegistrationMethodv4.h.

◆ m_CurrentLevel

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
SizeValueType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_CurrentLevel {}
protected

Definition at line 554 of file itkImageRegistrationMethodv4.h.

◆ m_CurrentMetricValue

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
RealType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_CurrentMetricValue {}
protected

Definition at line 557 of file itkImageRegistrationMethodv4.h.

◆ m_CurrentRandomSeed

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
int itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_CurrentRandomSeed {}
protected

Definition at line 586 of file itkImageRegistrationMethodv4.h.

◆ m_FirstImageMetricIndex

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
int itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_FirstImageMetricIndex {}
protected

Definition at line 579 of file itkImageRegistrationMethodv4.h.

◆ m_FixedImageMasks

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
FixedImageMasksContainerType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_FixedImageMasks {}
protected

Definition at line 563 of file itkImageRegistrationMethodv4.h.

◆ m_FixedPointSets

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
PointSetsContainerType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_FixedPointSets {}
protected

Definition at line 566 of file itkImageRegistrationMethodv4.h.

◆ m_FixedSmoothImages

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
FixedImagesContainerType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_FixedSmoothImages {}
protected

Definition at line 561 of file itkImageRegistrationMethodv4.h.

◆ m_InitializeCenterOfLinearOutputTransform

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
bool itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_InitializeCenterOfLinearOutputTransform {}
private

Definition at line 601 of file itkImageRegistrationMethodv4.h.

◆ m_InPlace

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
bool itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_InPlace {}
private

Definition at line 599 of file itkImageRegistrationMethodv4.h.

◆ m_IsConverged

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
bool itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_IsConverged {}
protected

Definition at line 559 of file itkImageRegistrationMethodv4.h.

◆ m_Metric

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
MetricPointer itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_Metric {}
protected

Definition at line 575 of file itkImageRegistrationMethodv4.h.

◆ m_MetricSamplingPercentagePerLevel

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
MetricSamplingPercentageArrayType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_MetricSamplingPercentagePerLevel {}
protected

Definition at line 577 of file itkImageRegistrationMethodv4.h.

◆ m_MetricSamplingStrategy

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
MetricSamplingStrategyEnum itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_MetricSamplingStrategy {}
protected

Definition at line 576 of file itkImageRegistrationMethodv4.h.

◆ m_MovingImageMasks

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
MovingImageMasksContainerType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_MovingImageMasks {}
protected

Definition at line 564 of file itkImageRegistrationMethodv4.h.

◆ m_MovingPointSets

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
PointSetsContainerType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_MovingPointSets {}
protected

Definition at line 567 of file itkImageRegistrationMethodv4.h.

◆ m_MovingSmoothImages

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
MovingImagesContainerType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_MovingSmoothImages {}
protected

Definition at line 562 of file itkImageRegistrationMethodv4.h.

◆ m_NumberOfFixedObjects

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
SizeValueType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_NumberOfFixedObjects {}
protected

Definition at line 568 of file itkImageRegistrationMethodv4.h.

◆ m_NumberOfLevels

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
SizeValueType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_NumberOfLevels { 0 }
protected

Definition at line 555 of file itkImageRegistrationMethodv4.h.

◆ m_NumberOfMetrics

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
SizeValueType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_NumberOfMetrics {}
protected

Definition at line 578 of file itkImageRegistrationMethodv4.h.

◆ m_NumberOfMovingObjects

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
SizeValueType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_NumberOfMovingObjects {}
protected

Definition at line 569 of file itkImageRegistrationMethodv4.h.

◆ m_Optimizer

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
OptimizerPointer itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_Optimizer {}
protected

Definition at line 571 of file itkImageRegistrationMethodv4.h.

◆ m_OptimizerWeights

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
OptimizerWeightsType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_OptimizerWeights {}
protected

Definition at line 572 of file itkImageRegistrationMethodv4.h.

◆ m_OptimizerWeightsAreIdentity

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
bool itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_OptimizerWeightsAreIdentity {}
protected

Definition at line 573 of file itkImageRegistrationMethodv4.h.

◆ m_OutputTransform

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
OutputTransformPointer itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_OutputTransform {}
protected

Definition at line 595 of file itkImageRegistrationMethodv4.h.

◆ m_RandomSeed

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
int itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_RandomSeed {}
protected

Definition at line 585 of file itkImageRegistrationMethodv4.h.

◆ m_ReseedIterator

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
bool itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_ReseedIterator {}
protected

Definition at line 584 of file itkImageRegistrationMethodv4.h.

◆ m_ShrinkFactorsPerLevel

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
std::vector<ShrinkFactorsPerDimensionContainerType> itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_ShrinkFactorsPerLevel {}
protected

Definition at line 580 of file itkImageRegistrationMethodv4.h.

◆ m_SmoothingSigmasAreSpecifiedInPhysicalUnits

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
bool itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_SmoothingSigmasAreSpecifiedInPhysicalUnits {}
protected

Definition at line 582 of file itkImageRegistrationMethodv4.h.

◆ m_SmoothingSigmasPerLevel

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
SmoothingSigmasArrayType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_SmoothingSigmasPerLevel {}
protected

Definition at line 581 of file itkImageRegistrationMethodv4.h.

◆ m_TransformParametersAdaptorsPerLevel

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
TransformParametersAdaptorsContainerType itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_TransformParametersAdaptorsPerLevel {}
protected

Definition at line 589 of file itkImageRegistrationMethodv4.h.

◆ m_VirtualDomainImage

template<typename TFixedImage , typename TMovingImage , typename TOutputTransform = Transform<double, TFixedImage::ImageDimension, TFixedImage::ImageDimension>, typename TVirtualImage = TFixedImage, typename TPointSet = PointSet<unsigned int, TFixedImage::ImageDimension>>
VirtualImagePointer itk::ImageRegistrationMethodv4< TFixedImage, TMovingImage, TOutputTransform, TVirtualImage, TPointSet >::m_VirtualDomainImage {}
protected

Definition at line 565 of file itkImageRegistrationMethodv4.h.


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