ITK  4.0.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Member Functions | Protected Attributes | Private Member Functions
itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension > Class Template Reference

Extend auxiliary variables smoothly using Fast Marching. More...

#include <itkFastMarchingExtensionImageFilterBase.h>

Inheritance diagram for itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >:
Collaboration diagram for itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >:

List of all members.

Public Types

typedef AuxImageType::Pointer AuxImagePointer
typedef Image< AuxValueType,
ImageDimension
AuxImageType
typedef
AuxValueContainerType::ConstIterator 
AuxValueContainerConstIterator
typedef
AuxValueContainerType::Pointer 
AuxValueContainerPointer
typedef VectorContainer
< IdentifierType,
AuxValueVectorType
AuxValueContainerType
typedef TAuxValue AuxValueType
typedef Vector< AuxValueType,
AuxDimension
AuxValueVectorType
typedef SmartPointer< const SelfConstPointer
typedef
Superclass::InternalNodeStructure 
InternalNodeStructure
typedef
Superclass::NodePairContainerConstIterator 
NodePairContainerConstIterator
typedef
Superclass::NodePairContainerPointer 
NodePairContainerPointer
typedef
Superclass::NodePairContainerType 
NodePairContainerType
typedef Superclass::NodePairType NodePairType
typedef Superclass::NodeType NodeType
typedef Superclass::OutputImageType OutputImageType
typedef Superclass::OutputPixelType OutputPixelType
typedef SmartPointer< SelfPointer
typedef
FastMarchingExtensionImageFilterBase 
Self
typedef
FastMarchingImageFilterBase
< TInput, TOutput > 
Superclass
typedef Superclass::Traits Traits

Public Member Functions

virtual ::itk::LightObject::Pointer CreateAnother (void) const
AuxImageTypeGetAuxiliaryImage (const unsigned int &idx)
virtual const char * GetNameOfClass () const
 typedef (Concept::HasNumericTraits< TAuxValue >) AuxValueHasNumericTraitsCheck
virtual void SetAuxiliaryAliveValues (AuxValueContainerType *_arg)
virtual AuxValueContainerTypeGetAuxiliaryAliveValues ()
virtual void SetAuxiliaryTrialValues (AuxValueContainerType *_arg)
virtual AuxValueContainerTypeGetAuxiliaryTrialValues ()

Static Public Member Functions

static Pointer New ()

Static Public Attributes

static const unsigned int AuxDimension = VAuxDimension
static const unsigned int ImageDimension = Superclass::ImageDimension

Protected Member Functions

virtual void EnlargeOutputRequestedRegion (DataObject *output)
virtual void GenerateOutputInformation ()
virtual void InitializeOutput (OutputImageType *)
virtual void UpdateValue (OutputImageType *oImage, const NodeType &iValue)
 FastMarchingExtensionImageFilterBase ()
 ~FastMarchingExtensionImageFilterBase ()
void PrintSelf (std::ostream &os, Indent indent) const

Protected Attributes

AuxValueContainerPointer m_AuxiliaryAliveValues
AuxValueContainerPointer m_AuxiliaryTrialValues

Private Member Functions

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

Detailed Description

template<class TInput, class TOutput, typename TAuxValue, unsigned int VAuxDimension>
class itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >

Extend auxiliary variables smoothly using Fast Marching.

Fast marching can be used to extend auxiliary variables smoothly from the zero level set. Starting from an initial position on the front, this class simultaneously calculate the signed distance and extend a set of auxiliary values.

This class is templated over the level set image type, the auxiliary variable type and the number of auxiliary variables to extended. The initial front is specified by two containers: one containing the known points and one containing the trial points. The auxiliary variables on the front are represented by two auxiliary variable containers: one containing the value of the variables at the know points and on containing the value of the variables at the trail points.

Implemenation of this class is based on Chapter 11 of "Level Set Methods and Fast Marching Methods", J.A. Sethian, Cambridge Press, Second edition, 1999.

See also:
FastMarchingImageFilter
LevelSetTypeDefault
AuxVarTypeDefault

Definition at line 56 of file itkFastMarchingExtensionImageFilterBase.h.


Member Typedef Documentation

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef AuxImageType::Pointer itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::AuxImagePointer

Definition at line 90 of file itkFastMarchingExtensionImageFilterBase.h.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef Image< AuxValueType, ImageDimension > itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::AuxImageType

Definition at line 89 of file itkFastMarchingExtensionImageFilterBase.h.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef AuxValueContainerType::ConstIterator itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::AuxValueContainerConstIterator

Definition at line 87 of file itkFastMarchingExtensionImageFilterBase.h.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef AuxValueContainerType::Pointer itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::AuxValueContainerPointer

Definition at line 86 of file itkFastMarchingExtensionImageFilterBase.h.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef VectorContainer< IdentifierType, AuxValueVectorType > itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::AuxValueContainerType

Definition at line 84 of file itkFastMarchingExtensionImageFilterBase.h.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef TAuxValue itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::AuxValueType

AuxVarType typedef support.

Definition at line 82 of file itkFastMarchingExtensionImageFilterBase.h.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef Vector< AuxValueType, AuxDimension > itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::AuxValueVectorType

Definition at line 83 of file itkFastMarchingExtensionImageFilterBase.h.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef SmartPointer< const Self > itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::ConstPointer
template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef Superclass::InternalNodeStructure itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::InternalNodeStructure

Definition at line 108 of file itkFastMarchingExtensionImageFilterBase.h.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef Superclass::NodePairContainerConstIterator itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::NodePairContainerConstIterator
template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef Superclass::NodePairContainerPointer itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::NodePairContainerPointer
template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef Superclass::NodePairContainerType itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::NodePairContainerType
template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef Superclass::NodePairType itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::NodePairType

NodePairType pair of node and corresponding value

Reimplemented from itk::FastMarchingImageFilterBase< TInput, TOutput >.

Definition at line 95 of file itkFastMarchingExtensionImageFilterBase.h.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef Superclass::NodeType itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::NodeType

Index typedef support.

Reimplemented from itk::FastMarchingImageFilterBase< TInput, TOutput >.

Definition at line 94 of file itkFastMarchingExtensionImageFilterBase.h.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef Superclass::OutputImageType itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::OutputImageType
template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef Superclass::OutputPixelType itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::OutputPixelType
template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef SmartPointer< Self > itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::Pointer
template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef FastMarchingExtensionImageFilterBase itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::Self

Standard class typdedefs.

Reimplemented from itk::FastMarchingImageFilterBase< TInput, TOutput >.

Definition at line 61 of file itkFastMarchingExtensionImageFilterBase.h.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef FastMarchingImageFilterBase< TInput, TOutput > itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::Superclass
template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
typedef Superclass::Traits itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::Traits

Constructor & Destructor Documentation

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::FastMarchingExtensionImageFilterBase ( ) [protected]

End concept checking

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::~FastMarchingExtensionImageFilterBase ( ) [inline, protected]

End concept checking

Definition at line 132 of file itkFastMarchingExtensionImageFilterBase.h.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::FastMarchingExtensionImageFilterBase ( const Self ) [private]

Member Function Documentation

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
virtual::itk::LightObject::Pointer itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::CreateAnother ( void  ) const
template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
virtual void itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::EnlargeOutputRequestedRegion ( DataObject output) [protected, virtual]
template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
virtual void itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::GenerateOutputInformation ( ) [protected, virtual]

Generate the output image meta information

Reimplemented from itk::FastMarchingImageFilterBase< TInput, TOutput >.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
virtual AuxValueContainerType* itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::GetAuxiliaryAliveValues ( ) [virtual]

Set the container auxiliary values at the initial alive points.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
AuxImageType* itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::GetAuxiliaryImage ( const unsigned int &  idx)

Get one of the extended auxiliary variable image.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
virtual AuxValueContainerType* itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::GetAuxiliaryTrialValues ( ) [virtual]

Set the container of auxiliary values at the initial trial points.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
virtual const char* itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::GetNameOfClass ( ) const [virtual]

Run-time type information (and related methods).

Reimplemented from itk::FastMarchingImageFilterBase< TInput, TOutput >.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
virtual void itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::InitializeOutput ( OutputImageType ) [protected, virtual]
template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
static Pointer itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::New ( ) [static]

Method for creation through the object factory.

Reimplemented from itk::FastMarchingImageFilterBase< TInput, TOutput >.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
void itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::operator= ( const Self ) [private]
template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
void itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const [protected]

End concept checking

Reimplemented from itk::FastMarchingBase< TInput, TOutput >.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
virtual void itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::SetAuxiliaryAliveValues ( AuxValueContainerType _arg) [virtual]

Set the container auxiliary values at the initial alive points.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
virtual void itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::SetAuxiliaryTrialValues ( AuxValueContainerType _arg) [virtual]

Set the container of auxiliary values at the initial trial points.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::typedef ( Concept::HasNumericTraits< TAuxValue >  )

Begin concept checking This class requires AuxValueHasNumericTraitsCheck in the form of ( Concept::HasNumericTraits< TAuxValue > )

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
virtual void itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::UpdateValue ( OutputImageType oImage,
const NodeType iValue 
) [protected, virtual]

Member Data Documentation

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
const unsigned int itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::AuxDimension = VAuxDimension [static]

Number of auxiliary variables to be extended.

Definition at line 79 of file itkFastMarchingExtensionImageFilterBase.h.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
const unsigned int itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::ImageDimension = Superclass::ImageDimension [static]

The dimension of the level set.

Reimplemented from itk::FastMarchingImageFilterBase< TInput, TOutput >.

Definition at line 76 of file itkFastMarchingExtensionImageFilterBase.h.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
AuxValueContainerPointer itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::m_AuxiliaryAliveValues [protected]

Definition at line 145 of file itkFastMarchingExtensionImageFilterBase.h.

template<class TInput , class TOutput , typename TAuxValue , unsigned int VAuxDimension>
AuxValueContainerPointer itk::FastMarchingExtensionImageFilterBase< TInput, TOutput, TAuxValue, VAuxDimension >::m_AuxiliaryTrialValues [protected]

Definition at line 146 of file itkFastMarchingExtensionImageFilterBase.h.


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