ITK  4.4.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Static Public Attributes | Protected Member Functions | Private Member Functions | Private Attributes | List of all members
itk::Path< TInput, TOutput, VDimension > Class Template Referenceabstract

#include <itkPath.h>

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

Detailed Description

template<class TInput, class TOutput, unsigned int VDimension>
class itk::Path< TInput, TOutput, VDimension >

Represent a path through ND Space.

This base class is intended to represent a path through an image. As a path, it maps a 1D parameter (such as time or arc length, etc) to an index (or possibly an offset or a point) in ND space. This mapping is done via the abstract Evaluate() method, which must be overridden in all instantiable subclasses. The only geometric requirement for a gerneral path is that it be continuous. A path may be open or closed, and may cross itself several times. A classic application of this class is the representation of contours in 2D images using chaincodes or freeman codes. Another use of a path is to guide the movement of an iterator through an image.

Template Parameters
TInputType of the 1D parameter of the path, e.g. unsigned int or double.
TOutputType of the path location at the given input, e.g. itk::Offset< VDimension > or itk::ContinuousIndex< VDimension >
VDimensionDimension of the path.
See Also
Index
Point
ContinuousIndex

Definition at line 53 of file itkPath.h.

Public Types

typedef SmartPointer< const SelfConstPointer
 
typedef Index< VDimension > IndexType
 
typedef TInput InputType
 
typedef Offset< VDimension > OffsetType
 
typedef TOutput OutputType
 
typedef SmartPointer< SelfPointer
 
typedef Path Self
 
typedef DataObject Superclass
 
- Public Types inherited from itk::DataObject
typedef SmartPointer< const SelfConstPointer
 
typedef std::string DataObjectIdentifierType
 
typedef std::vector< Pointer >
::size_type 
DataObjectPointerArraySizeType
 
typedef SmartPointer< SelfPointer
 
typedef DataObject Self
 
typedef Object Superclass
 
- Public Types inherited from itk::Object
typedef SmartPointer< const SelfConstPointer
 
typedef SmartPointer< SelfPointer
 
typedef Object Self
 
typedef LightObject Superclass
 
- Public Types inherited from itk::LightObject
typedef SmartPointer< const SelfConstPointer
 
typedef SmartPointer< SelfPointer
 
typedef LightObject Self
 

Public Member Functions

virtual InputType EndOfInput () const
 
virtual OutputType Evaluate (const InputType &input) const =0
 
virtual IndexType EvaluateToIndex (const InputType &input) const =0
 
virtual const char * GetNameOfClass () const
 
virtual OffsetType IncrementInput (InputType &input) const =0
 
virtual InputType StartOfInput () const
 
- Public Member Functions inherited from itk::DataObject
virtual void CopyInformation (const DataObject *)
 
virtual void DataHasBeenGenerated ()
 
void DisconnectPipeline ()
 
bool GetDataReleased () const
 
virtual const bool & GetReleaseDataFlag ()
 
SmartPointerForwardReference
< ProcessObject
GetSource () const
 
DataObjectPointerArraySizeType GetSourceOutputIndex () const
 
const DataObjectIdentifierTypeGetSourceOutputName () const
 
virtual ModifiedTimeType GetUpdateMTime () const
 
virtual void Graft (const DataObject *)
 
virtual void Initialize ()
 
virtual void PrepareForNewData ()
 
virtual void PropagateRequestedRegion ()
 
void ReleaseData ()
 
virtual void ReleaseDataFlagOff ()
 
virtual void ReleaseDataFlagOn ()
 
virtual bool RequestedRegionIsOutsideOfTheBufferedRegion ()
 
virtual void ResetPipeline ()
 
void SetReleaseDataFlag (bool flag)
 
virtual void SetRequestedRegion (const DataObject *)
 
virtual void SetRequestedRegionToLargestPossibleRegion ()
 
bool ShouldIReleaseData () const
 
virtual void Update ()
 
virtual void UpdateOutputData ()
 
virtual void UpdateOutputInformation ()
 
virtual bool VerifyRequestedRegion ()
 
void SetPipelineMTime (ModifiedTimeType time)
 
virtual const ModifiedTimeTypeGetPipelineMTime ()
 
virtual void SetRealTimeStamp (RealTimeStamp _arg)
 
virtual const RealTimeStampGetRealTimeStamp ()
 
- Public Member Functions inherited from itk::Object
unsigned long AddObserver (const EventObject &event, Command *)
 
unsigned long AddObserver (const EventObject &event, Command *) const
 
virtual LightObject::Pointer CreateAnother () const
 
virtual void DebugOff () const
 
virtual void DebugOn () const
 
CommandGetCommand (unsigned long tag)
 
bool GetDebug () const
 
MetaDataDictionaryGetMetaDataDictionary (void)
 
const MetaDataDictionaryGetMetaDataDictionary (void) 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
 
virtual void Register () const
 
void RemoveAllObservers ()
 
void RemoveObserver (unsigned long tag)
 
void SetDebug (bool debugFlag) const
 
void SetMetaDataDictionary (const MetaDataDictionary &rhs)
 
virtual void SetReferenceCount (int)
 
virtual void UnRegister () const
 
- Public Member Functions inherited from itk::LightObject
virtual void Delete ()
 
virtual int GetReferenceCount () const
 
 itkCloneMacro (Self)
 
void Print (std::ostream &os, Indent indent=0) const
 

Static Public Attributes

static const unsigned int PathDimension = VDimension
 

Protected Member Functions

virtual IndexType GetZeroIndex () const
 
virtual OffsetType GetZeroOffset () const
 
 Path ()
 
void PrintSelf (std::ostream &os, Indent indent) const
 
 ~Path ()
 
- Protected Member Functions inherited from itk::DataObject
 DataObject ()
 
virtual void PropagateResetPipeline ()
 
 ~DataObject ()
 
- Protected Member Functions inherited from itk::Object
 Object ()
 
bool PrintObservers (std::ostream &os, Indent indent) const
 
virtual void SetTimeStamp (const TimeStamp &time)
 
virtual ~Object ()
 
- 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 ()
 

Private Member Functions

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

Private Attributes

IndexType m_ZeroIndex
 
OffsetType m_ZeroOffset
 

Additional Inherited Members

- Static Public Member Functions inherited from itk::DataObject
static bool GetGlobalReleaseDataFlag ()
 
static void GlobalReleaseDataFlagOff ()
 
static void GlobalReleaseDataFlagOn ()
 
static void SetGlobalReleaseDataFlag (bool val)
 
- Protected Types inherited from itk::LightObject
typedef int InternalReferenceCountType
 
- Protected Attributes inherited from itk::LightObject
InternalReferenceCountType m_ReferenceCount
 
SimpleFastMutexLock m_ReferenceCountLock
 

Member Typedef Documentation

template<class TInput, class TOutput, unsigned int VDimension>
typedef SmartPointer< const Self > itk::Path< TInput, TOutput, VDimension >::ConstPointer

Definition at line 60 of file itkPath.h.

template<class TInput, class TOutput, unsigned int VDimension>
typedef Index< VDimension > itk::Path< TInput, TOutput, VDimension >::IndexType

All paths must be mapable to index space

Definition at line 75 of file itkPath.h.

template<class TInput, class TOutput, unsigned int VDimension>
typedef TInput itk::Path< TInput, TOutput, VDimension >::InputType

Input type

Definition at line 66 of file itkPath.h.

template<class TInput, class TOutput, unsigned int VDimension>
typedef Offset< VDimension > itk::Path< TInput, TOutput, VDimension >::OffsetType

Definition at line 76 of file itkPath.h.

template<class TInput, class TOutput, unsigned int VDimension>
typedef TOutput itk::Path< TInput, TOutput, VDimension >::OutputType

Output type

Definition at line 72 of file itkPath.h.

template<class TInput, class TOutput, unsigned int VDimension>
typedef SmartPointer< Self > itk::Path< TInput, TOutput, VDimension >::Pointer

Definition at line 59 of file itkPath.h.

template<class TInput, class TOutput, unsigned int VDimension>
typedef Path itk::Path< TInput, TOutput, VDimension >::Self

Standard class typedefs.

Definition at line 57 of file itkPath.h.

template<class TInput, class TOutput, unsigned int VDimension>
typedef DataObject itk::Path< TInput, TOutput, VDimension >::Superclass

Definition at line 58 of file itkPath.h.

Constructor & Destructor Documentation

template<class TInput, class TOutput, unsigned int VDimension>
itk::Path< TInput, TOutput, VDimension >::Path ( )
protected
template<class TInput, class TOutput, unsigned int VDimension>
itk::Path< TInput, TOutput, VDimension >::~Path ( )
inlineprotected

Definition at line 112 of file itkPath.h.

template<class TInput, class TOutput, unsigned int VDimension>
itk::Path< TInput, TOutput, VDimension >::Path ( const Self )
private

Member Function Documentation

template<class TInput, class TOutput, unsigned int VDimension>
virtual InputType itk::Path< TInput, TOutput, VDimension >::EndOfInput ( ) const
inlinevirtual

Where does the path end (what is the last valid input value)? This value is sometimes used by IncrementInput() to go to the end of a path.

Reimplemented in itk::PolyLineParametricPath< VDimension >, itk::HilbertPath< TIndexValue, VDimension >, itk::OrthogonallyCorrected2DParametricPath, itk::ChainCodePath< VDimension >, and itk::ChainCodePath< 2 >.

Definition at line 88 of file itkPath.h.

template<class TInput, class TOutput, unsigned int VDimension>
virtual OutputType itk::Path< TInput, TOutput, VDimension >::Evaluate ( const InputType input) const
pure virtual

Evaluate the path at specified location along the path. Return data is the path's "natural" format.

template<class TInput, class TOutput, unsigned int VDimension>
virtual IndexType itk::Path< TInput, TOutput, VDimension >::EvaluateToIndex ( const InputType input) const
pure virtual

Like Evaluate(), except always returns an index

template<class TInput, class TOutput, unsigned int VDimension>
virtual const char* itk::Path< TInput, TOutput, VDimension >::GetNameOfClass ( ) const
virtual
template<class TInput, class TOutput, unsigned int VDimension>
virtual IndexType itk::Path< TInput, TOutput, VDimension >::GetZeroIndex ( ) const
protectedvirtual
template<class TInput, class TOutput, unsigned int VDimension>
virtual OffsetType itk::Path< TInput, TOutput, VDimension >::GetZeroOffset ( ) const
protectedvirtual
template<class TInput, class TOutput, unsigned int VDimension>
virtual OffsetType itk::Path< TInput, TOutput, VDimension >::IncrementInput ( InputType input) const
pure virtual

Increment the input variable passed by reference such that the ND index of the path moves to its next vertex-connected (8-connected in 2D) neighbor. Return the Index-space offset of the path from its prior input to its new input. If the path is unable to increment, input is not changed and an offset of Zero is returned. Children are not required to implement general bounds checking, but are required to return an offset of zero when trying to increment from the final valid input value.

template<class TInput, class TOutput, unsigned int VDimension>
void itk::Path< TInput, TOutput, VDimension >::operator= ( const Self )
private
template<class TInput, class TOutput, unsigned int VDimension>
void itk::Path< TInput, TOutput, VDimension >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const
protectedvirtual

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::DataObject.

template<class TInput, class TOutput, unsigned int VDimension>
virtual InputType itk::Path< TInput, TOutput, VDimension >::StartOfInput ( ) const
inlinevirtual

Where does the path begin? For most types of paths, the path will begin at zero. This value can be overridden in children, and is necessary for iterators to know how to go to the beginning of a path.

Reimplemented in itk::OrthogonallyCorrected2DParametricPath.

Definition at line 81 of file itkPath.h.

Member Data Documentation

template<class TInput, class TOutput, unsigned int VDimension>
IndexType itk::Path< TInput, TOutput, VDimension >::m_ZeroIndex
private

Definition at line 125 of file itkPath.h.

template<class TInput, class TOutput, unsigned int VDimension>
OffsetType itk::Path< TInput, TOutput, VDimension >::m_ZeroOffset
private

Definition at line 124 of file itkPath.h.

template<class TInput, class TOutput, unsigned int VDimension>
const unsigned int itk::Path< TInput, TOutput, VDimension >::PathDimension = VDimension
static

Path dimension. The dimension of a path is fixed at construction.

Definition at line 63 of file itkPath.h.


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