ITK  5.4.0
Insight Toolkit
Public Types | Public Member Functions | Protected Types | Protected Member Functions | Protected Attributes | List of all members
itk::FastMarchingBase< TInput, TOutput > Class Template Referenceabstract

#include <itkFastMarchingBase.h>

Detailed Description

template<typename TInput, typename TOutput>
class itk::FastMarchingBase< TInput, TOutput >

Abstract class to solve an Eikonal based-equation using Fast Marching Method.

Fast marching solves an Eikonal equation where the speed is always non-negative and depends on the position only. Starting from an initial position on the front, fast marching systematically moves the front forward one node at a time.

Updates are performed using an entropy satisfy scheme where only "upwind" neighborhoods are used. This implementation of Fast Marching uses a std::priority_queue to locate the next proper node to update.

Fast Marching sweeps through N points in (N log N) steps to obtain the arrival time value as the front propagates through the domain.

The initial front is specified by two containers:

In order for the filter to evolve, at least some trial nodes must be specified. These can for instance be specified as the layer of nodes around the alive ones.

The algorithm is terminated early by setting an appropriate stopping criterion, or if there are no more nodes to process.

Template Parameters
TTraitstraits which includes definition such as:
Todo:
In the current implementation, std::priority_queue only allows taking nodes out from the front and putting nodes in from the back. Use itk::PriorityQueueContainer instead.
Topology constraints:
Additional flexibility in this class includes the implementation of topology constraints for image-based fast marching. Further details can be found in the paper

NJ Tustison, BA Avants, MF Siqueira, JC Gee. "Topological Well- Composedness and Glamorous Glue: A Digital Gluing Algorithm for Topologically Constrained Front Propagation, IEEE Transactions on Image Processing, 20(6):1756-1761, June 2011.

Essentially, one can constrain the propagating front(s) such that they either:

  1. don't merge (using the "Strict" option)
  2. don't create handles (using the "NoHandles" option)

Whereas the majority of related work uses the digital topological concept of "simple points" to constrain the evolving front, this filter uses the concept of "well-composedness". Advantages of the latter over the former includes being able to use the standard marching cubes algorithm to produce a mesh whose genus is identical to that of the evolved front(s).

See also
FastMarchingStoppingCriterionBase

Definition at line 126 of file itkFastMarchingBase.h.

+ Inheritance diagram for itk::FastMarchingBase< TInput, TOutput >:
+ Collaboration diagram for itk::FastMarchingBase< TInput, TOutput >:

Public Types

using ConstPointer = SmartPointer< const Self >
 
using InputDomainPointer = typename Traits::InputDomainPointer
 
using InputDomainType = typename Traits::InputDomainType
 
using InputPixelType = typename Traits::InputPixelType
 
using LabelType = typename Traits::LabelType
 
using NodePairContainerConstIterator = typename Traits::NodePairContainerConstIterator
 
using NodePairContainerPointer = typename Traits::NodePairContainerPointer
 
using NodePairContainerType = typename Traits::NodePairContainerType
 
using NodePairType = typename Traits::NodePairType
 
using NodeType = typename Traits::NodeType
 
using OutputDomainPointer = typename Traits::OutputDomainPointer
 
using OutputDomainType = typename Traits::OutputDomainType
 
using OutputPixelType = typename Traits::OutputPixelType
 
using Pointer = SmartPointer< Self >
 
using Self = FastMarchingBase
 
using StoppingCriterionPointer = typename StoppingCriterionType::Pointer
 
using StoppingCriterionType = FastMarchingStoppingCriterionBase< TInput, TOutput >
 
using Superclass = typename FastMarchingTraits< TInput, TOutput >::SuperclassType
 
using SuperclassType = typename Traits::SuperclassType
 
using TopologyCheckEnum = FastMarchingTraitsEnums::TopologyCheck
 
using Traits = FastMarchingTraits< TInput, TOutput >
 

Public Member Functions

virtual StoppingCriterionTypeGetModifiableStoppingCriterion ()
 
const char * GetNameOfClass () const override
 
virtual double GetNormalizationFactor ()
 
virtual double GetSpeedConstant ()
 
virtual OutputPixelType GetTargetReachedValue ()
 
virtual void SetCollectPoints (bool _arg)
 
virtual void SetNormalizationFactor (double _arg)
 
virtual void SetSpeedConstant (double _arg)
 
virtual void SetStoppingCriterion (StoppingCriterionType *_arg)
 
virtual void SetTopologyCheck (const TopologyCheckEnum _arg)
 
virtual const TopologyCheckEnumGetTopologyCheck () const
 
virtual void SetTrialPoints (NodePairContainerType *_arg)
 
virtual NodePairContainerTypeGetModifiableTrialPoints ()
 
virtual void SetAlivePoints (NodePairContainerType *_arg)
 
virtual NodePairContainerTypeGetModifiableAlivePoints ()
 
virtual void SetProcessedPoints (NodePairContainerType *_arg)
 
virtual NodePairContainerTypeGetModifiableProcessedPoints ()
 
virtual void SetForbiddenPoints (NodePairContainerType *_arg)
 
virtual NodePairContainerTypeGetModifiableForbiddenPoints ()
 
virtual const bool & GetCollectPoints () const
 
virtual void CollectPointsOn ()
 

Protected Types

using HeapContainerType = std::vector< NodePairType >
 
using NodeComparerType = std::greater< NodePairType >
 
using PriorityQueueType = std::priority_queue< NodePairType, HeapContainerType, NodeComparerType >
 

Protected Member Functions

virtual bool CheckTopology (OutputDomainType *oDomain, const NodeType &iNode)=0
 
 FastMarchingBase ()
 
void GenerateData () override
 
virtual unsigned char GetLabelValueForGivenNode (const NodeType &iNode) const =0
 
virtual const OutputPixelType GetOutputValue (OutputDomainType *oDomain, const NodeType &iNode) const =0
 
virtual IdentifierType GetTotalNumberOfNodes () const =0
 
void Initialize (OutputDomainType *oDomain)
 
virtual void InitializeOutput (OutputDomainType *oDomain)=0
 
void PrintSelf (std::ostream &os, Indent indent) const override
 
virtual void SetLabelValueForGivenNode (const NodeType &iNode, const LabelType &iLabel)=0
 
virtual void SetOutputValue (OutputDomainType *oDomain, const NodeType &iNode, const OutputPixelType &iValue)=0
 
virtual void UpdateNeighbors (OutputDomainType *oDomain, const NodeType &iNode)=0
 
virtual void UpdateValue (OutputDomainType *oDomain, const NodeType &iNode)=0
 
 ~FastMarchingBase () override=default
 

Protected Attributes

NodePairContainerPointer m_AlivePoints {}
 
bool m_CollectPoints {}
 
NodePairContainerPointer m_ForbiddenPoints {}
 
PriorityQueueType m_Heap {}
 
double m_InverseSpeed {}
 
OutputPixelType m_LargeValue {}
 
double m_NormalizationFactor {}
 
NodePairContainerPointer m_ProcessedPoints {}
 
double m_SpeedConstant {}
 
StoppingCriterionPointer m_StoppingCriterion {}
 
OutputPixelType m_TargetReachedValue {}
 
TopologyCheckEnum m_TopologyCheck {}
 
OutputPixelType m_TopologyValue {}
 
NodePairContainerPointer m_TrialPoints {}
 

Member Typedef Documentation

◆ ConstPointer

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::ConstPointer = SmartPointer<const Self>

Definition at line 137 of file itkFastMarchingBase.h.

◆ HeapContainerType

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::HeapContainerType = std::vector<NodePairType>
protected

Definition at line 265 of file itkFastMarchingBase.h.

◆ InputDomainPointer

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::InputDomainPointer = typename Traits::InputDomainPointer

Definition at line 144 of file itkFastMarchingBase.h.

◆ InputDomainType

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::InputDomainType = typename Traits::InputDomainType

Input Domain related definitions

Definition at line 143 of file itkFastMarchingBase.h.

◆ InputPixelType

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::InputPixelType = typename Traits::InputPixelType

Definition at line 145 of file itkFastMarchingBase.h.

◆ LabelType

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::LabelType = typename Traits::LabelType

Definition at line 161 of file itkFastMarchingBase.h.

◆ NodeComparerType

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::NodeComparerType = std::greater<NodePairType>
protected

Definition at line 266 of file itkFastMarchingBase.h.

◆ NodePairContainerConstIterator

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::NodePairContainerConstIterator = typename Traits::NodePairContainerConstIterator

Definition at line 159 of file itkFastMarchingBase.h.

◆ NodePairContainerPointer

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::NodePairContainerPointer = typename Traits::NodePairContainerPointer

Definition at line 158 of file itkFastMarchingBase.h.

◆ NodePairContainerType

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::NodePairContainerType = typename Traits::NodePairContainerType

Definition at line 157 of file itkFastMarchingBase.h.

◆ NodePairType

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::NodePairType = typename Traits::NodePairType

NodePairType pair of node and corresponding value

Definition at line 156 of file itkFastMarchingBase.h.

◆ NodeType

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::NodeType = typename Traits::NodeType

NodeType type of node

Definition at line 153 of file itkFastMarchingBase.h.

◆ OutputDomainPointer

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::OutputDomainPointer = typename Traits::OutputDomainPointer

Definition at line 149 of file itkFastMarchingBase.h.

◆ OutputDomainType

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::OutputDomainType = typename Traits::OutputDomainType

Output Domain related definitions

Definition at line 148 of file itkFastMarchingBase.h.

◆ OutputPixelType

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::OutputPixelType = typename Traits::OutputPixelType

Definition at line 150 of file itkFastMarchingBase.h.

◆ Pointer

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::Pointer = SmartPointer<Self>

Definition at line 136 of file itkFastMarchingBase.h.

◆ PriorityQueueType

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::PriorityQueueType = std::priority_queue<NodePairType, HeapContainerType, NodeComparerType>
protected

Definition at line 268 of file itkFastMarchingBase.h.

◆ Self

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::Self = FastMarchingBase

Definition at line 134 of file itkFastMarchingBase.h.

◆ StoppingCriterionPointer

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::StoppingCriterionPointer = typename StoppingCriterionType::Pointer

Definition at line 165 of file itkFastMarchingBase.h.

◆ StoppingCriterionType

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::StoppingCriterionType = FastMarchingStoppingCriterionBase<TInput, TOutput>

StoppingCriterionType stopping criterion

Definition at line 164 of file itkFastMarchingBase.h.

◆ Superclass

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::Superclass = typename FastMarchingTraits<TInput, TOutput>::SuperclassType

Definition at line 135 of file itkFastMarchingBase.h.

◆ SuperclassType

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::SuperclassType = typename Traits::SuperclassType

Definition at line 132 of file itkFastMarchingBase.h.

◆ TopologyCheckEnum

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::TopologyCheckEnum = FastMarchingTraitsEnums::TopologyCheck

Definition at line 179 of file itkFastMarchingBase.h.

◆ Traits

template<typename TInput , typename TOutput >
using itk::FastMarchingBase< TInput, TOutput >::Traits = FastMarchingTraits<TInput, TOutput>

Definition at line 131 of file itkFastMarchingBase.h.

Constructor & Destructor Documentation

◆ FastMarchingBase()

template<typename TInput , typename TOutput >
itk::FastMarchingBase< TInput, TOutput >::FastMarchingBase ( )
protected

Constructor.

◆ ~FastMarchingBase()

template<typename TInput , typename TOutput >
itk::FastMarchingBase< TInput, TOutput >::~FastMarchingBase ( )
overrideprotecteddefault

Destructor.

Member Function Documentation

◆ CheckTopology()

template<typename TInput , typename TOutput >
virtual bool itk::FastMarchingBase< TInput, TOutput >::CheckTopology ( OutputDomainType oDomain,
const NodeType iNode 
)
protectedpure virtual

Check if the current node violate topological criterion.

Parameters
[in]oDomain
[in]iNode

◆ CollectPointsOn()

template<typename TInput , typename TOutput >
virtual void itk::FastMarchingBase< TInput, TOutput >::CollectPointsOn ( )
virtual

Get the Collect Points flag.

◆ GenerateData()

template<typename TInput , typename TOutput >
void itk::FastMarchingBase< TInput, TOutput >::GenerateData ( )
overrideprotected

◆ GetCollectPoints()

template<typename TInput , typename TOutput >
virtual const bool& itk::FastMarchingBase< TInput, TOutput >::GetCollectPoints ( ) const
virtual

Get the Collect Points flag.

◆ GetLabelValueForGivenNode()

template<typename TInput , typename TOutput >
virtual unsigned char itk::FastMarchingBase< TInput, TOutput >::GetLabelValueForGivenNode ( const NodeType iNode) const
protectedpure virtual

Get the LabelEnum Value for a given node.

Parameters
[in]iNode
Returns
its label value

Implemented in itk::FastMarchingImageFilterBase< TInput, TOutput >, and itk::FastMarchingQuadEdgeMeshFilterBase< TInput, TOutput >.

◆ GetModifiableAlivePoints()

template<typename TInput , typename TOutput >
virtual NodePairContainerType* itk::FastMarchingBase< TInput, TOutput >::GetModifiableAlivePoints ( )
virtual

Set/Get AlivePoints

◆ GetModifiableForbiddenPoints()

template<typename TInput , typename TOutput >
virtual NodePairContainerType* itk::FastMarchingBase< TInput, TOutput >::GetModifiableForbiddenPoints ( )
virtual

Set/Get ForbiddenPoints

◆ GetModifiableProcessedPoints()

template<typename TInput , typename TOutput >
virtual NodePairContainerType* itk::FastMarchingBase< TInput, TOutput >::GetModifiableProcessedPoints ( )
virtual

Set/Get ProcessedPoints

◆ GetModifiableStoppingCriterion()

template<typename TInput , typename TOutput >
virtual StoppingCriterionType* itk::FastMarchingBase< TInput, TOutput >::GetModifiableStoppingCriterion ( )
virtual

◆ GetModifiableTrialPoints()

template<typename TInput , typename TOutput >
virtual NodePairContainerType* itk::FastMarchingBase< TInput, TOutput >::GetModifiableTrialPoints ( )
virtual

Set/Get TrialPoints

◆ GetNameOfClass()

template<typename TInput , typename TOutput >
const char* itk::FastMarchingBase< TInput, TOutput >::GetNameOfClass ( ) const
override

Run-time type information (and related methods).

◆ GetNormalizationFactor()

template<typename TInput , typename TOutput >
virtual double itk::FastMarchingBase< TInput, TOutput >::GetNormalizationFactor ( )
virtual

Set/Get NormalizationFactor.

◆ GetOutputValue()

template<typename TInput , typename TOutput >
virtual const OutputPixelType itk::FastMarchingBase< TInput, TOutput >::GetOutputValue ( OutputDomainType oDomain,
const NodeType iNode 
) const
protectedpure virtual

Get the output value (front value) for a given node.

◆ GetSpeedConstant()

template<typename TInput , typename TOutput >
virtual double itk::FastMarchingBase< TInput, TOutput >::GetSpeedConstant ( )
virtual

Set/Get SpeedConstant.

◆ GetTargetReachedValue()

template<typename TInput , typename TOutput >
virtual OutputPixelType itk::FastMarchingBase< TInput, TOutput >::GetTargetReachedValue ( )
virtual

Get the value reached by the front when it stops propagating.

◆ GetTopologyCheck()

template<typename TInput , typename TOutput >
virtual const TopologyCheckEnum& itk::FastMarchingBase< TInput, TOutput >::GetTopologyCheck ( ) const
virtual

Set/Get the TopologyCheckType macro indicating whether the user wants to check topology (and which one).

◆ GetTotalNumberOfNodes()

template<typename TInput , typename TOutput >
virtual IdentifierType itk::FastMarchingBase< TInput, TOutput >::GetTotalNumberOfNodes ( ) const
protectedpure virtual

◆ Initialize()

template<typename TInput , typename TOutput >
void itk::FastMarchingBase< TInput, TOutput >::Initialize ( OutputDomainType oDomain)
protected


◆ InitializeOutput()

template<typename TInput , typename TOutput >
virtual void itk::FastMarchingBase< TInput, TOutput >::InitializeOutput ( OutputDomainType oDomain)
protectedpure virtual

◆ PrintSelf()

template<typename TInput , typename TOutput >
void itk::FastMarchingBase< TInput, TOutput >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const
overrideprotected

PrintSelf method

◆ SetAlivePoints()

template<typename TInput , typename TOutput >
virtual void itk::FastMarchingBase< TInput, TOutput >::SetAlivePoints ( NodePairContainerType _arg)
virtual

Set/Get AlivePoints

◆ SetCollectPoints()

template<typename TInput , typename TOutput >
virtual void itk::FastMarchingBase< TInput, TOutput >::SetCollectPoints ( bool  _arg)
virtual

Set the Collect Points flag. Instrument the algorithm to collect a container of all nodes which it has visited. Useful for creating Narrowbands for level set algorithms that supports narrow banding.

◆ SetForbiddenPoints()

template<typename TInput , typename TOutput >
virtual void itk::FastMarchingBase< TInput, TOutput >::SetForbiddenPoints ( NodePairContainerType _arg)
virtual

Set/Get ForbiddenPoints

◆ SetLabelValueForGivenNode()

template<typename TInput , typename TOutput >
virtual void itk::FastMarchingBase< TInput, TOutput >::SetLabelValueForGivenNode ( const NodeType iNode,
const LabelType iLabel 
)
protectedpure virtual

Set the Label Value for a given node.

Parameters
[in]iNode
[in]iLabel

Implemented in itk::FastMarchingImageFilterBase< TInput, TOutput >, and itk::FastMarchingQuadEdgeMeshFilterBase< TInput, TOutput >.

◆ SetNormalizationFactor()

template<typename TInput , typename TOutput >
virtual void itk::FastMarchingBase< TInput, TOutput >::SetNormalizationFactor ( double  _arg)
virtual

◆ SetOutputValue()

template<typename TInput , typename TOutput >
virtual void itk::FastMarchingBase< TInput, TOutput >::SetOutputValue ( OutputDomainType oDomain,
const NodeType iNode,
const OutputPixelType iValue 
)
protectedpure virtual

Set the output value (front value) for a given node.

◆ SetProcessedPoints()

template<typename TInput , typename TOutput >
virtual void itk::FastMarchingBase< TInput, TOutput >::SetProcessedPoints ( NodePairContainerType _arg)
virtual

Set/Get ProcessedPoints

◆ SetSpeedConstant()

template<typename TInput , typename TOutput >
virtual void itk::FastMarchingBase< TInput, TOutput >::SetSpeedConstant ( double  _arg)
virtual

◆ SetStoppingCriterion()

template<typename TInput , typename TOutput >
virtual void itk::FastMarchingBase< TInput, TOutput >::SetStoppingCriterion ( StoppingCriterionType _arg)
virtual

Set/Get the Stopping Criterion.

◆ SetTopologyCheck()

template<typename TInput , typename TOutput >
virtual void itk::FastMarchingBase< TInput, TOutput >::SetTopologyCheck ( const TopologyCheckEnum  _arg)
virtual

Set/Get the TopologyCheckType macro indicating whether the user wants to check topology (and which one).

◆ SetTrialPoints()

template<typename TInput , typename TOutput >
virtual void itk::FastMarchingBase< TInput, TOutput >::SetTrialPoints ( NodePairContainerType _arg)
virtual

Set/Get TrialPoints

◆ UpdateNeighbors()

template<typename TInput , typename TOutput >
virtual void itk::FastMarchingBase< TInput, TOutput >::UpdateNeighbors ( OutputDomainType oDomain,
const NodeType iNode 
)
protectedpure virtual

Update neighbors to a given node.

Parameters
[in]oDomain
[in]iNode

◆ UpdateValue()

template<typename TInput , typename TOutput >
virtual void itk::FastMarchingBase< TInput, TOutput >::UpdateValue ( OutputDomainType oDomain,
const NodeType iNode 
)
protectedpure virtual

Update value for a given node.

Parameters
[in]oDomain
[in]iNode

Member Data Documentation

◆ m_AlivePoints

template<typename TInput , typename TOutput >
NodePairContainerPointer itk::FastMarchingBase< TInput, TOutput >::m_AlivePoints {}
protected

Definition at line 258 of file itkFastMarchingBase.h.

◆ m_CollectPoints

template<typename TInput , typename TOutput >
bool itk::FastMarchingBase< TInput, TOutput >::m_CollectPoints {}
protected

Definition at line 262 of file itkFastMarchingBase.h.

◆ m_ForbiddenPoints

template<typename TInput , typename TOutput >
NodePairContainerPointer itk::FastMarchingBase< TInput, TOutput >::m_ForbiddenPoints {}
protected

Definition at line 260 of file itkFastMarchingBase.h.

◆ m_Heap

template<typename TInput , typename TOutput >
PriorityQueueType itk::FastMarchingBase< TInput, TOutput >::m_Heap {}
protected

Definition at line 270 of file itkFastMarchingBase.h.

◆ m_InverseSpeed

template<typename TInput , typename TOutput >
double itk::FastMarchingBase< TInput, TOutput >::m_InverseSpeed {}
protected

Definition at line 250 of file itkFastMarchingBase.h.

◆ m_LargeValue

template<typename TInput , typename TOutput >
OutputPixelType itk::FastMarchingBase< TInput, TOutput >::m_LargeValue {}
protected

Definition at line 254 of file itkFastMarchingBase.h.

◆ m_NormalizationFactor

template<typename TInput , typename TOutput >
double itk::FastMarchingBase< TInput, TOutput >::m_NormalizationFactor {}
protected

Definition at line 251 of file itkFastMarchingBase.h.

◆ m_ProcessedPoints

template<typename TInput , typename TOutput >
NodePairContainerPointer itk::FastMarchingBase< TInput, TOutput >::m_ProcessedPoints {}
protected

Definition at line 259 of file itkFastMarchingBase.h.

◆ m_SpeedConstant

template<typename TInput , typename TOutput >
double itk::FastMarchingBase< TInput, TOutput >::m_SpeedConstant {}
protected

Definition at line 249 of file itkFastMarchingBase.h.

◆ m_StoppingCriterion

template<typename TInput , typename TOutput >
StoppingCriterionPointer itk::FastMarchingBase< TInput, TOutput >::m_StoppingCriterion {}
protected

Definition at line 247 of file itkFastMarchingBase.h.

◆ m_TargetReachedValue

template<typename TInput , typename TOutput >
OutputPixelType itk::FastMarchingBase< TInput, TOutput >::m_TargetReachedValue {}
protected

Definition at line 253 of file itkFastMarchingBase.h.

◆ m_TopologyCheck

template<typename TInput , typename TOutput >
TopologyCheckEnum itk::FastMarchingBase< TInput, TOutput >::m_TopologyCheck {}
protected

Definition at line 272 of file itkFastMarchingBase.h.

◆ m_TopologyValue

template<typename TInput , typename TOutput >
OutputPixelType itk::FastMarchingBase< TInput, TOutput >::m_TopologyValue {}
protected

Definition at line 255 of file itkFastMarchingBase.h.

◆ m_TrialPoints

template<typename TInput , typename TOutput >
NodePairContainerPointer itk::FastMarchingBase< TInput, TOutput >::m_TrialPoints {}
protected

Definition at line 257 of file itkFastMarchingBase.h.


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