ITK
4.3.0
Insight Segmentation and Registration Toolkit
|
#include <itkPathIterator.h>
PathIterator iterates (traces) over a path through an image.
This iterator visits only those indices of the image which are overlapped by the path. All indices are visited in path order. If a path crosses itself at an index, that index of the image will be visited twice. This class add write-access to the functionality of the PathConstIterator.
Definition at line 68 of file itkPathIterator.h.
Public Member Functions | |
virtual const char * | GetNameOfClass () const |
Self & | operator= (const Self &it) |
PathIterator (ImageType *imagePtr, const PathType *pathPtr) | |
PixelType & | Value (void) |
virtual | ~PathIterator () |
void | Set (const PixelType &value) |
Public Member Functions inherited from itk::PathConstIterator< TImage, TPath > | |
const PixelType & | Get (void) const |
const IndexType | GetIndex () |
const PathInputType | GetPathPosition () |
void | GoToBegin () |
bool | IsAtEnd () |
void | operator++ () |
Self & | operator= (const Self &it) |
PathConstIterator (const ImageType *imagePtr, const PathType *pathPtr) | |
virtual void | VisitStartIndexAsLastIndexIfClosed (bool flag) |
virtual | ~PathConstIterator () |
Static Public Attributes | |
static const unsigned int | ImageIteratorDimension = TImage::ImageDimension |
Static Public Attributes inherited from itk::PathConstIterator< TImage, TPath > | |
static const unsigned int | ImageIteratorDimension = TImage::ImageDimension |
Additional Inherited Members | |
Static Public Member Functions inherited from itk::PathConstIterator< TImage, TPath > | |
static unsigned int | GetImageIteratorDimension () |
Protected Attributes inherited from itk::PathConstIterator< TImage, TPath > | |
IndexType | m_CurrentImageIndex |
PathInputType | m_CurrentPathPosition |
ImageType::ConstWeakPointer | m_Image |
PointType | m_ImageOrigin |
const SizeValueType * | m_ImageSize |
SpacingType | m_ImageSpacing |
bool | m_IsAtEnd |
PathType::ConstPointer | m_Path |
RegionType | m_Region |
bool | m_VisitStartIndexAsLastIndexIfClosed |
OffsetType | m_ZeroOffset |
typedef Superclass::AccessorType itk::PathIterator< TImage, TPath >::AccessorType |
Definition at line 94 of file itkPathIterator.h.
typedef Superclass::ImageType itk::PathIterator< TImage, TPath >::ImageType |
Definition at line 89 of file itkPathIterator.h.
typedef Superclass::IndexType itk::PathIterator< TImage, TPath >::IndexType |
Inherit types from the superclass
Definition at line 86 of file itkPathIterator.h.
typedef Superclass::InternalPixelType itk::PathIterator< TImage, TPath >::InternalPixelType |
Definition at line 92 of file itkPathIterator.h.
typedef Superclass::OffsetType itk::PathIterator< TImage, TPath >::OffsetType |
Definition at line 87 of file itkPathIterator.h.
typedef Superclass::PathInputType itk::PathIterator< TImage, TPath >::PathInputType |
Definition at line 96 of file itkPathIterator.h.
typedef Superclass::PathOutputType itk::PathIterator< TImage, TPath >::PathOutputType |
Definition at line 97 of file itkPathIterator.h.
typedef Superclass::PathType itk::PathIterator< TImage, TPath >::PathType |
Definition at line 95 of file itkPathIterator.h.
typedef Superclass::PixelContainer itk::PathIterator< TImage, TPath >::PixelContainer |
Definition at line 90 of file itkPathIterator.h.
typedef Superclass::PixelContainerPointer itk::PathIterator< TImage, TPath >::PixelContainerPointer |
Definition at line 91 of file itkPathIterator.h.
typedef Superclass::PixelType itk::PathIterator< TImage, TPath >::PixelType |
Definition at line 93 of file itkPathIterator.h.
typedef PathIterator itk::PathIterator< TImage, TPath >::Self |
Standard class typedefs.
Definition at line 73 of file itkPathIterator.h.
typedef Superclass::SizeType itk::PathIterator< TImage, TPath >::SizeType |
Definition at line 88 of file itkPathIterator.h.
typedef PathConstIterator< TImage, TPath > itk::PathIterator< TImage, TPath >::Superclass |
Define the superclass
Definition at line 83 of file itkPathIterator.h.
itk::PathIterator< TImage, TPath >::PathIterator | ( | ImageType * | imagePtr, |
const PathType * | pathPtr | ||
) |
Constructor establishes an iterator to walk along a path
|
inlinevirtual |
Default Destructor.
Definition at line 130 of file itkPathIterator.h.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::PathConstIterator< TImage, TPath >.
Self& itk::PathIterator< TImage, TPath >::operator= | ( | const Self & | it | ) |
operator= is provided to make sure the handles to the image and path are properly reference counted.
|
inline |
Set the pixel value
Definition at line 103 of file itkPathIterator.h.
|
inline |
Return a reference to the pixel This method will provide the fastest access to pixel data, but it will NOT support ImageAdaptors.
Definition at line 117 of file itkPathIterator.h.
|
static |
Dimension of the image the iterator walks. This constant is needed so that functions that are templated over image iterator type (as opposed to being templated over pixel type and dimension) can have compile time access to the dimension of the image that the iterator walks.
Definition at line 80 of file itkPathIterator.h.