ITK  4.4.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Attributes | List of all members
itk::ImageConstIteratorWithOnlyIndex< TImage > Class Template Reference

#include <itkImageConstIteratorWithOnlyIndex.h>

+ Inheritance diagram for itk::ImageConstIteratorWithOnlyIndex< TImage >:

Detailed Description

template<typename TImage>
class itk::ImageConstIteratorWithOnlyIndex< TImage >

A base class for multi-dimensional iterators templated over image type that are designed to provide only index information, and no pixel access.

ImageConstIteratorWithOnlyIndex is a templated class to represent a multi-dimensional iterator, and is templated over the dimension of the image.

The "WithOnlyIndex" family of iterators differs from the "WithIndex" family of iterators in that only index information is available. The iterator does not access image data at all, and thus can be safely used with images of type ImageBase.

ImageConstIteratorWithOnlyIndex is a base class for the "WithOnlyIndex" family of ITK image iterators, which are designed to efficiently keep track of the image index position of the iterator during increment and decrement operations. This iterator is a base class and provides only the basic construction and comparison operations. It does not provide mechanisms for moving the iterator. A subclass of ImageConstIteratorWithOnlyIndex must be used to move the iterator.

ImageConstIteratorWithOnlyIndex is a multi-dimensional iterator, requiring more information be specified before the iterator can be used than conventional iterators. Whereas the std::vector::iterator from the STL only needs to be passed a pointer to establish the iterator, the multi-dimensional image iterator needs a pointer, the size of the region, and the start index of the region. To gain access to this information, ImageConstIteratorWithOnlyIndex holds a reference to the image over which it is traversing.

MORE INFORMATION
For a complete description of the ITK Image Iterators and their API, please see the Iterators chapter in the ITK Software Guide. The ITK Software Guide is available in print and as a free .pdf download from http://www.itk.org.
See Also
ImageRegionConstIteratorWithOnlyIndex
ImageRandomConstIteratorWithOnlyIndex
ConstNeighborhoodIteratorWithOnlyIndex
ImageConstIterator
ConditionalConstIterator
ConstNeighborhoodIterator
ConstShapedNeighborhoodIterator
ConstSliceIterator
CorrespondenceDataStructureIterator
FloodFilledFunctionConditionalConstIterator
FloodFilledImageFunctionConditionalConstIterator
FloodFilledImageFunctionConditionalIterator
FloodFilledSpatialFunctionConditionalConstIterator
FloodFilledSpatialFunctionConditionalIterator
ImageConstIterator
ImageConstIteratorWithIndex
ImageIterator
ImageIteratorWithIndex
ImageLinearConstIteratorWithIndex
ImageLinearIteratorWithIndex
ImageRandomConstIteratorWithIndex
ImageRandomIteratorWithIndex
ImageRegionConstIterator
ImageRegionConstIteratorWithIndex
ImageRegionExclusionConstIteratorWithIndex
ImageRegionExclusionIteratorWithIndex
ImageRegionIterator
ImageRegionIteratorWithIndex
ImageRegionReverseConstIterator
ImageRegionReverseIterator
ImageReverseConstIterator
ImageReverseIterator
ImageSliceConstIteratorWithIndex
ImageSliceIteratorWithIndex
NeighborhoodIterator
PathConstIterator
PathIterator
ShapedNeighborhoodIterator
SliceIterator

Definition at line 95 of file itkImageConstIteratorWithOnlyIndex.h.

Public Types

typedef TImage ImageType
 
typedef TImage::IndexType IndexType
 
typedef IndexType::IndexValueType IndexValueType
 
typedef TImage::OffsetType OffsetType
 
typedef OffsetType::OffsetValueType OffsetValueType
 
typedef TImage::RegionType RegionType
 
typedef
ImageConstIteratorWithOnlyIndex 
Self
 
typedef TImage::SizeType SizeType
 
typedef SizeType::SizeValueType SizeValueType
 

Public Member Functions

const IndexTypeGetIndex () const
 
const RegionTypeGetRegion () const
 
void GoToBegin (void)
 
void GoToReverseBegin (void)
 
 ImageConstIteratorWithOnlyIndex ()
 
 ImageConstIteratorWithOnlyIndex (const Self &it)
 
 ImageConstIteratorWithOnlyIndex (const TImage *ptr, const RegionType &region)
 
bool IsAtEnd (void) const
 
bool IsAtReverseEnd (void) const
 
 itkLegacyMacro (Self Begin(void) const)
 
 itkLegacyMacro (Self End(void) const)
 
bool operator!= (const Self &it) const
 
bool operator< (const Self &it) const
 
bool operator<= (const Self &it) const
 
Selfoperator= (const Self &it)
 
bool operator== (const Self &it) const
 
bool operator> (const Self &it) const
 
bool operator>= (const Self &it) const
 
bool Remaining ()
 
void SetIndex (const IndexType &ind)
 
virtual ~ImageConstIteratorWithOnlyIndex ()
 

Static Public Member Functions

static unsigned int GetImageDimension ()
 

Static Public Attributes

static const unsigned int ImageDimension = TImage::ImageDimension
 

Protected Attributes

IndexType m_BeginIndex
 
IndexType m_EndIndex
 
TImage::ConstPointer m_Image
 
OffsetValueType m_OffsetTable [ImageDimension+1]
 
IndexType m_PositionIndex
 
RegionType m_Region
 
bool m_Remaining
 

Member Typedef Documentation

template<typename TImage>
typedef TImage itk::ImageConstIteratorWithOnlyIndex< TImage >::ImageType

Image typedef support.

Definition at line 119 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
typedef TImage::IndexType itk::ImageConstIteratorWithOnlyIndex< TImage >::IndexType

Index typedef support.

Definition at line 108 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
typedef IndexType::IndexValueType itk::ImageConstIteratorWithOnlyIndex< TImage >::IndexValueType

Definition at line 109 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
typedef TImage::OffsetType itk::ImageConstIteratorWithOnlyIndex< TImage >::OffsetType

Type of the Offset taken from the image

Definition at line 122 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
typedef OffsetType::OffsetValueType itk::ImageConstIteratorWithOnlyIndex< TImage >::OffsetValueType

Definition at line 123 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
typedef TImage::RegionType itk::ImageConstIteratorWithOnlyIndex< TImage >::RegionType

Region typedef support.

Definition at line 116 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
typedef ImageConstIteratorWithOnlyIndex itk::ImageConstIteratorWithOnlyIndex< TImage >::Self

Standard class typedefs.

Definition at line 99 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
typedef TImage::SizeType itk::ImageConstIteratorWithOnlyIndex< TImage >::SizeType

Size typedef support.

Definition at line 112 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
typedef SizeType::SizeValueType itk::ImageConstIteratorWithOnlyIndex< TImage >::SizeValueType

Definition at line 113 of file itkImageConstIteratorWithOnlyIndex.h.

Constructor & Destructor Documentation

Default Constructor. Need to provide a default constructor since we provide a copy constructor.

template<typename TImage>
itk::ImageConstIteratorWithOnlyIndex< TImage >::ImageConstIteratorWithOnlyIndex ( const Self it)

Copy Constructor. The copy constructor is provided to make sure the handle to the image is properly reference counted.

template<typename TImage>
itk::ImageConstIteratorWithOnlyIndex< TImage >::ImageConstIteratorWithOnlyIndex ( const TImage *  ptr,
const RegionType region 
)

Constructor establishes an iterator to walk a particular image and a particular region of that image.

template<typename TImage>
virtual itk::ImageConstIteratorWithOnlyIndex< TImage >::~ImageConstIteratorWithOnlyIndex ( )
inlinevirtual

Default Destructor.

Definition at line 138 of file itkImageConstIteratorWithOnlyIndex.h.

Member Function Documentation

template<typename TImage>
static unsigned int itk::ImageConstIteratorWithOnlyIndex< TImage >::GetImageDimension ( )
inlinestatic

Get the dimension (size) of the index.

Definition at line 145 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
const IndexType& itk::ImageConstIteratorWithOnlyIndex< TImage >::GetIndex ( void  ) const
inline

Get the index. This provides a read only reference to the index.

See Also
SetIndex

Definition at line 210 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
const RegionType& itk::ImageConstIteratorWithOnlyIndex< TImage >::GetRegion ( ) const
inline

Get the region that this iterator walks. ImageIterators know the beginning and the end of the region of the image to iterate over.

Definition at line 217 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
void itk::ImageConstIteratorWithOnlyIndex< TImage >::GoToBegin ( void  )

Move an iterator to the beginning of the region.

template<typename TImage>
void itk::ImageConstIteratorWithOnlyIndex< TImage >::GoToReverseBegin ( void  )

Move an iterator to the End of the region.

template<typename TImage>
bool itk::ImageConstIteratorWithOnlyIndex< TImage >::IsAtEnd ( void  ) const
inline

Is the iterator at the end of the region?

Definition at line 250 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
bool itk::ImageConstIteratorWithOnlyIndex< TImage >::IsAtReverseEnd ( void  ) const
inline

Is the iterator at the beginning of the region?

Definition at line 244 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
itk::ImageConstIteratorWithOnlyIndex< TImage >::itkLegacyMacro ( Self Begin(void)  const)

Move an iterator to the beginning of the region.

Deprecated:
Use GoToBegin() instead
template<typename TImage>
itk::ImageConstIteratorWithOnlyIndex< TImage >::itkLegacyMacro ( Self End(void)  const)

Move an iterator to the End of the region.

Deprecated:
Use GoToReverseBegin() instead
template<typename TImage>
bool itk::ImageConstIteratorWithOnlyIndex< TImage >::operator!= ( const Self it) const
inline

Comparison operator. Two iterators are the same if they "point to" the same memory location

Definition at line 153 of file itkImageConstIteratorWithOnlyIndex.h.

References itk::ImageConstIteratorWithOnlyIndex< TImage >::m_PositionIndex.

template<typename TImage>
bool itk::ImageConstIteratorWithOnlyIndex< TImage >::operator< ( const Self it) const
inline

Comparison operator. An iterator is "less than" another if it "points to" a lower memory location.

Definition at line 181 of file itkImageConstIteratorWithOnlyIndex.h.

References itk::ImageConstIteratorWithOnlyIndex< TImage >::m_PositionIndex.

template<typename TImage>
bool itk::ImageConstIteratorWithOnlyIndex< TImage >::operator<= ( const Self it) const
inline

Comparison operator. An iterator is "less than" another if it "points to" a lower memory location.

Definition at line 171 of file itkImageConstIteratorWithOnlyIndex.h.

References itk::ImageConstIteratorWithOnlyIndex< TImage >::m_PositionIndex.

template<typename TImage>
Self& itk::ImageConstIteratorWithOnlyIndex< TImage >::operator= ( const Self it)
template<typename TImage>
bool itk::ImageConstIteratorWithOnlyIndex< TImage >::operator== ( const Self it) const
inline

Comparison operator. Two iterators are the same if they "point to" the same memory location

Definition at line 162 of file itkImageConstIteratorWithOnlyIndex.h.

References itk::ImageConstIteratorWithOnlyIndex< TImage >::m_PositionIndex.

template<typename TImage>
bool itk::ImageConstIteratorWithOnlyIndex< TImage >::operator> ( const Self it) const
inline

Comparison operator. An iterator is "greater than" another if it "points to" a higher location.

Definition at line 201 of file itkImageConstIteratorWithOnlyIndex.h.

References itk::ImageConstIteratorWithOnlyIndex< TImage >::m_PositionIndex.

template<typename TImage>
bool itk::ImageConstIteratorWithOnlyIndex< TImage >::operator>= ( const Self it) const
inline

Comparison operator. An iterator is "greater than" another if it "points to" a higher location.

Definition at line 191 of file itkImageConstIteratorWithOnlyIndex.h.

References itk::ImageConstIteratorWithOnlyIndex< TImage >::m_PositionIndex.

template<typename TImage>
bool itk::ImageConstIteratorWithOnlyIndex< TImage >::Remaining ( )
inline

Are there data remaining in the region ?

Definition at line 256 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
void itk::ImageConstIteratorWithOnlyIndex< TImage >::SetIndex ( const IndexType ind)
inline

Set the index. No bounds checking is performed.

See Also
GetIndex

Definition at line 224 of file itkImageConstIteratorWithOnlyIndex.h.

Member Data Documentation

template<typename TImage>
const unsigned int itk::ImageConstIteratorWithOnlyIndex< TImage >::ImageDimension = TImage::ImageDimension
static

Dimension of the image that the iterator walks. This constant is needed so 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 105 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
IndexType itk::ImageConstIteratorWithOnlyIndex< TImage >::m_BeginIndex
protected

Definition at line 265 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
IndexType itk::ImageConstIteratorWithOnlyIndex< TImage >::m_EndIndex
protected

Definition at line 266 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
TImage::ConstPointer itk::ImageConstIteratorWithOnlyIndex< TImage >::m_Image
protected

Definition at line 262 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
OffsetValueType itk::ImageConstIteratorWithOnlyIndex< TImage >::m_OffsetTable[ImageDimension+1]
protected

Definition at line 272 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
IndexType itk::ImageConstIteratorWithOnlyIndex< TImage >::m_PositionIndex
protected
template<typename TImage>
RegionType itk::ImageConstIteratorWithOnlyIndex< TImage >::m_Region
protected

Definition at line 270 of file itkImageConstIteratorWithOnlyIndex.h.

template<typename TImage>
bool itk::ImageConstIteratorWithOnlyIndex< TImage >::m_Remaining
protected

Definition at line 274 of file itkImageConstIteratorWithOnlyIndex.h.


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