ITK
6.0.0
Insight Toolkit
|
#include <itkPointSetToPointSetMetric.h>
Computes similarity between two point sets.
This Class is templated over the type of the two point-sets. It expects a Transform to be plugged in. This particular class is the base class for a hierarchy of point-set to point-set metrics.
This class computes a value that measures the similarity between the fixed point-set and the transformed moving point-set.
Definition at line 45 of file itkPointSetToPointSetMetric.h.
Public Member Functions | |
virtual TransformType * | GetModifiableTransform () |
const char * | GetNameOfClass () const override |
unsigned int | GetNumberOfParameters () const override |
virtual void | Initialize () |
virtual void | SetTransform (TransformType *_arg) |
void | SetTransformParameters (const ParametersType ¶meters) const |
virtual void | SetFixedPointSet (const FixedPointSetType *_arg) |
virtual const FixedPointSetType * | GetFixedPointSet () const |
virtual void | SetMovingPointSet (const MovingPointSetType *_arg) |
virtual const MovingPointSetType * | GetMovingPointSet () const |
Public Member Functions inherited from itk::MultipleValuedCostFunction | |
virtual void | GetDerivative (const ParametersType ¶meters, DerivativeType &derivative) const =0 |
const char * | GetNameOfClass () const override |
virtual unsigned int | GetNumberOfValues () const =0 |
virtual MeasureType | GetValue (const ParametersType ¶meters) const =0 |
Public Member Functions inherited from itk::CostFunctionTemplate< double > | |
const char * | GetNameOfClass () const override |
virtual unsigned int | GetNumberOfParameters () const=0 |
Public Member Functions inherited from itk::Object | |
unsigned long | AddObserver (const EventObject &event, Command *cmd) 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 |
Command * | GetCommand (unsigned long tag) |
bool | GetDebug () const |
MetaDataDictionary & | GetMetaDataDictionary () |
const MetaDataDictionary & | GetMetaDataDictionary () const |
virtual ModifiedTimeType | GetMTime () const |
const char * | GetNameOfClass () const override |
virtual const TimeStamp & | GetTimeStamp () 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) const |
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 Pointer | CreateAnother () const |
virtual void | Delete () |
virtual const char * | GetNameOfClass () const |
virtual int | GetReferenceCount () const |
void | Print (std::ostream &os, Indent indent=0) const |
virtual void | Register () const |
virtual void | SetReferenceCount (int) |
virtual void | UnRegister () const noexcept |
Static Public Attributes | |
static constexpr unsigned int | FixedPointSetDimension = TFixedPointSet::PointDimension |
static constexpr unsigned int | MovingPointSetDimension = TMovingPointSet::PointDimension |
Protected Member Functions | |
PointSetToPointSetMetric () | |
void | PrintSelf (std::ostream &os, Indent indent) const override |
~PointSetToPointSetMetric () override=default | |
Protected Member Functions inherited from itk::MultipleValuedCostFunction | |
MultipleValuedCostFunction ()=default | |
~MultipleValuedCostFunction () override | |
Protected Member Functions inherited from itk::CostFunctionTemplate< double > | |
CostFunctionTemplate ()=default | |
void | PrintSelf (std::ostream &os, Indent indent) const override |
~CostFunctionTemplate () override=default | |
Protected Member Functions inherited from itk::Object | |
Object () | |
bool | PrintObservers (std::ostream &os, Indent indent) const |
void | PrintSelf (std::ostream &os, Indent indent) const override |
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 | PrintSelf (std::ostream &os, Indent indent) const |
virtual void | PrintTrailer (std::ostream &os, Indent indent) const |
virtual | ~LightObject () |
Protected Attributes | |
FixedPointSetConstPointer | m_FixedPointSet {} |
MovingPointSetConstPointer | m_MovingPointSet {} |
TransformPointer | m_Transform {} |
Protected Attributes inherited from itk::LightObject | |
std::atomic< int > | m_ReferenceCount {} |
Additional Inherited Members | |
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 () |
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::ConstPointer = SmartPointer<const Self> |
Definition at line 54 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::CoordinateRepresentationType = Superclass::ParametersValueType |
Type used for representing point components
Definition at line 57 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::DerivativeType = Superclass::DerivativeType |
Type of the derivative.
Definition at line 95 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::FixedPointDataIterator = typename FixedPointSetType::PointDataContainer::ConstIterator |
Definition at line 76 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::FixedPointIterator = typename FixedPointSetType::PointsContainer::ConstIterator |
Definition at line 75 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::FixedPointSetConstPointer = typename FixedPointSetType::ConstPointer |
Definition at line 69 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::FixedPointSetType = TFixedPointSet |
Type of the fixed Pointset.
Definition at line 68 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::InputPointType = typename TransformType::InputPointType |
Definition at line 86 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::MeasureType = Superclass::MeasureType |
Type of the measure.
Definition at line 92 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::MovingPointDataIterator = typename MovingPointSetType::PointDataContainer::ConstIterator |
Definition at line 79 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::MovingPointIterator = typename MovingPointSetType::PointsContainer::ConstIterator |
Definition at line 78 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::MovingPointSetConstPointer = typename MovingPointSetType::ConstPointer |
Definition at line 65 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::MovingPointSetPixelType = typename TMovingPointSet::PixelType |
Definition at line 64 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::MovingPointSetType = TMovingPointSet |
Type of the moving Pointset.
Definition at line 63 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::OutputPointType = typename TransformType::OutputPointType |
Definition at line 87 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::ParametersType = Superclass::ParametersType |
Type of the parameters.
Definition at line 98 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::Pointer = SmartPointer<Self> |
Definition at line 53 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::Self = PointSetToPointSetMetric |
Standard class type aliases.
Definition at line 51 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::Superclass = MultipleValuedCostFunction |
Definition at line 52 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::TransformJacobianType = typename TransformType::JacobianType |
Definition at line 89 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::TransformParametersType = typename TransformType::ParametersType |
Definition at line 88 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::TransformPointer = typename TransformType::Pointer |
Definition at line 85 of file itkPointSetToPointSetMetric.h.
using itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::TransformType = Transform<CoordinateRepresentationType, Self::MovingPointSetDimension, Self::FixedPointSetDimension> |
Type of the Transform Base class
Definition at line 82 of file itkPointSetToPointSetMetric.h.
|
protected |
|
overrideprotecteddefault |
|
virtual |
Get/Set the Fixed Pointset.
|
virtual |
Get a pointer to the Transform.
|
virtual |
Get/Set the Moving Pointset.
|
overridevirtual |
Reimplemented from itk::MultipleValuedCostFunction.
|
inlineoverridevirtual |
Return the number of parameters required by the Transform
Implements itk::CostFunctionTemplate< double >.
Definition at line 122 of file itkPointSetToPointSetMetric.h.
|
virtual |
Initialize the Metric by making sure that all the components are present and plugged together correctly.
|
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::Object.
|
virtual |
Get/Set the Fixed Pointset.
|
virtual |
Get/Set the Moving Pointset.
|
virtual |
Connect the Transform.
void itk::PointSetToPointSetMetric< TFixedPointSet, TMovingPointSet >::SetTransformParameters | ( | const ParametersType & | parameters | ) | const |
Set the parameters defining the Transform.
|
staticconstexpr |
Definition at line 73 of file itkPointSetToPointSetMetric.h.
|
protected |
Definition at line 137 of file itkPointSetToPointSetMetric.h.
|
protected |
Definition at line 139 of file itkPointSetToPointSetMetric.h.
|
mutableprotected |
Definition at line 141 of file itkPointSetToPointSetMetric.h.
|
staticconstexpr |
Constants for the pointset dimensions
Definition at line 72 of file itkPointSetToPointSetMetric.h.