ITK
4.13.0
Insight Segmentation and Registration Toolkit
|
#include <itkImageConstIterator.h>
A multi-dimensional image iterator templated over image type.
A multi-dimensional image iterator templated over image type. Specialized for RLEImage.
ImageConstIterator is a templated class to represent a multi-dimensional iterator. ImageConstIterator is templated over the type of the image to be iterated over.
ImageConstIterator is a base class for all the image iterators. It provides the basic construction and comparison operations. However, it does not provide mechanisms for moving the iterator. A subclass of ImageConstIterator must be used to move the iterator.
ImageConstIterator 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 buffer, the size of the region, the start index of the buffer, and the start index of the region. To gain access to this information, ImageConstIterator holds a reference to the image over which it is traversing.
ImageConstIterator assumes a particular layout of the image data. In particular, the data is arranged in a 1D array as if it were [][][][slice][row][col] with Index[0] = col, Index[1] = row, Index[2] = slice, etc.
Definition at line 84 of file itkImageConstIterator.h.
Public Types | |
typedef TImage::AccessorFunctorType | AccessorFunctorType |
typedef TImage::AccessorType | AccessorType |
typedef TImage | ImageType |
typedef TImage::IndexType | IndexType |
typedef TImage::InternalPixelType | InternalPixelType |
typedef TImage::OffsetType | OffsetType |
typedef TImage::PixelContainer | PixelContainer |
typedef PixelContainer::Pointer | PixelContainerPointer |
typedef TImage::PixelType | PixelType |
typedef TImage::RegionType | RegionType |
typedef ImageConstIterator | Self |
typedef TImage::SizeType | SizeType |
Public Member Functions | |
ImageConstIterator (const Self &it) | |
itkTypeMacroNoParent (ImageConstIterator) | |
virtual | ~ImageConstIterator () |
ImageConstIterator () | |
Static Public Attributes | |
static const unsigned int | ImageIteratorDimension = TImage::ImageDimension |
TImage::ConstWeakPointer | m_Image |
RegionType | m_Region |
OffsetValueType | m_Offset |
OffsetValueType | m_BeginOffset |
OffsetValueType | m_EndOffset |
const InternalPixelType * | m_Buffer |
AccessorType | m_PixelAccessor |
AccessorFunctorType | m_PixelAccessorFunctor |
ImageConstIterator (const ImageType *ptr, const RegionType ®ion) | |
Self & | operator= (const Self &it) |
virtual void | SetRegion (const RegionType ®ion) |
bool | operator!= (const Self &it) const |
bool | operator== (const Self &it) const |
bool | operator<= (const Self &it) const |
bool | operator< (const Self &it) const |
bool | operator>= (const Self &it) const |
bool | operator> (const Self &it) const |
const IndexType | GetIndex () const |
virtual void | SetIndex (const IndexType &ind) |
const RegionType & | GetRegion () const |
const ImageType * | GetImage () const |
PixelType | Get (void) const |
const PixelType & | Value (void) const |
itkLegacyMacro (Self Begin(void) const) | |
void | GoToBegin () |
itkLegacyMacro (Self End(void) const) | |
void | GoToEnd () |
bool | IsAtBegin (void) const |
bool | IsAtEnd (void) const |
static unsigned int | GetImageIteratorDimension () |
typedef TImage::AccessorFunctorType itk::ImageConstIterator< TImage >::AccessorFunctorType |
Definition at line 130 of file itkImageConstIterator.h.
typedef TImage::AccessorType itk::ImageConstIterator< TImage >::AccessorType |
Accessor type that convert data between internal and external representations.
Definition at line 129 of file itkImageConstIterator.h.
typedef TImage itk::ImageConstIterator< TImage >::ImageType |
Image typedef support.
Definition at line 113 of file itkImageConstIterator.h.
typedef TImage::IndexType itk::ImageConstIterator< TImage >::IndexType |
Index typedef support.
Definition at line 101 of file itkImageConstIterator.h.
typedef TImage::InternalPixelType itk::ImageConstIterator< TImage >::InternalPixelType |
Internal Pixel Type
Definition at line 122 of file itkImageConstIterator.h.
typedef TImage::OffsetType itk::ImageConstIterator< TImage >::OffsetType |
Offset typedef support.
Definition at line 107 of file itkImageConstIterator.h.
typedef TImage::PixelContainer itk::ImageConstIterator< TImage >::PixelContainer |
PixelContainer typedef support. Used to refer to the container for the pixel data. While this was already typdef'ed in the superclass it needs to be redone here for this subclass to compile properly with gcc.
Definition at line 118 of file itkImageConstIterator.h.
typedef PixelContainer::Pointer itk::ImageConstIterator< TImage >::PixelContainerPointer |
Definition at line 119 of file itkImageConstIterator.h.
typedef TImage::PixelType itk::ImageConstIterator< TImage >::PixelType |
External Pixel Type
Definition at line 125 of file itkImageConstIterator.h.
typedef TImage::RegionType itk::ImageConstIterator< TImage >::RegionType |
Region typedef support.
Definition at line 110 of file itkImageConstIterator.h.
typedef ImageConstIterator itk::ImageConstIterator< TImage >::Self |
Standard class typedefs.
Definition at line 88 of file itkImageConstIterator.h.
typedef TImage::SizeType itk::ImageConstIterator< TImage >::SizeType |
Size typedef support.
Definition at line 104 of file itkImageConstIterator.h.
|
inline |
Default Constructor. Need to provide a default constructor since we provide a copy constructor.
Definition at line 134 of file itkImageConstIterator.h.
|
inlinevirtual |
Default Destructor.
Definition at line 149 of file itkImageConstIterator.h.
|
inline |
Copy Constructor. The copy constructor is provided to make sure the handle to the image is properly reference counted.
Definition at line 153 of file itkImageConstIterator.h.
|
inline |
Constructor establishes an iterator to walk a particular image and a particular region of that image.
Definition at line 170 of file itkImageConstIterator.h.
|
inline |
Get the pixel value
Definition at line 327 of file itkImageConstIterator.h.
Referenced by itk::GradientRecursiveGaussianImageFilter< TInputImage, TOutputImage >::TransformOutputPixel().
|
inline |
Get the image that this iterator walks.
Definition at line 323 of file itkImageConstIterator.h.
Referenced by itk::ImageReverseConstIterator< TImage >::ImageReverseConstIterator(), itk::ImageReverseConstIterator< TImage >::operator=(), itk::GradientImageFilter< TInputImage, TOperatorValueType, TOutputValueType, TOutputImageType >::SetOutputPixel(), and itk::GradientRecursiveGaussianImageFilter< TInputImage, TOutputImage >::TransformOutputPixel().
|
inlinestatic |
Get the dimension (size) of the index.
Definition at line 244 of file itkImageConstIterator.h.
|
inline |
Get the index. This provides a read only reference to the index. This causes the index to be calculated from pointer arithmetic and is therefore an expensive operation.
Definition at line 309 of file itkImageConstIterator.h.
Referenced by itk::ImageReverseConstIterator< TImage >::ImageReverseConstIterator(), and itk::ImageReverseConstIterator< TImage >::operator=().
|
inline |
Get the region that this iterator walks. ImageConstIterators know the beginning and the end of the region of the image to iterate over.
Definition at line 319 of file itkImageConstIterator.h.
Referenced by itk::ImageReverseConstIterator< TImage >::ImageReverseConstIterator(), and itk::ImageReverseConstIterator< TImage >::operator=().
|
inline |
Move an iterator to the beginning of the region. "Begin" is defined as the first pixel in the region.
Definition at line 344 of file itkImageConstIterator.h.
|
inline |
Move an iterator to the end of the region. "End" is defined as one pixel past the last pixel of the region.
Definition at line 357 of file itkImageConstIterator.h.
|
inline |
Is the iterator at the beginning of the region? "Begin" is defined as the first pixel in the region.
Definition at line 364 of file itkImageConstIterator.h.
|
inline |
Is the iterator at the end of the region? "End" is defined as one pixel past the last pixel of the region.
Definition at line 371 of file itkImageConstIterator.h.
Referenced by itk::UnaryFunctorWithIndexImageFilter< TInputImage, TOutputImage, TFunctor >::ThreadedGenerateData().
itk::ImageConstIterator< TImage >::itkLegacyMacro | ( | Self Begin(void) | const | ) |
Return an iterator for the beginning of the region. "Begin" is defined as the first pixel in the region.
itk::ImageConstIterator< TImage >::itkLegacyMacro | ( | Self End(void) | const | ) |
Return an iterator for the end of the region. "End" is defined as one pixel past the last pixel of the region.
itk::ImageConstIterator< TImage >::itkTypeMacroNoParent | ( | ImageConstIterator< TImage > | ) |
Run-time type information (and related methods).
|
inline |
Comparison operator. Two iterators are the same if they "point to" the same memory location
Definition at line 250 of file itkImageConstIterator.h.
|
inline |
Comparison operator. An iterator is "less than" another if it "points to" a lower memory location.
Definition at line 278 of file itkImageConstIterator.h.
|
inline |
Comparison operator. An iterator is "less than" another if it "points to" a lower memory location.
Definition at line 268 of file itkImageConstIterator.h.
|
inline |
operator= is provided to make sure the handle to the image is properly reference counted.
Definition at line 186 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIteratorWithIndex< RLEImage< TPixel, VImageDimension, CounterType > >::ImageConstIteratorWithIndex(), itk::ImageConstIteratorWithOnlyIndex< RLEImage< TPixel, VImageDimension, CounterType > >::ImageConstIteratorWithOnlyIndex(), itk::ImageRegionConstIterator< RLEImage< TPixel, VImageDimension, CounterType > >::ImageRegionConstIterator(), itk::ImageRegionConstIterator< BufferType >::ImageRegionConstIterator(), itk::ImageRegionConstIteratorWithIndex< RLEImage< TPixel, VImageDimension, CounterType > >::ImageRegionConstIteratorWithIndex(), itk::ImageRegionConstIteratorWithOnlyIndex< RLEImage< TPixel, VImageDimension, CounterType > >::ImageRegionConstIteratorWithOnlyIndex(), itk::ImageRegionIterator< RLEImage< TPixel, VImageDimension, CounterType > >::ImageRegionIterator(), itk::ImageRegionIteratorWithIndex< RLEImage< TPixel, VImageDimension, CounterType > >::ImageRegionIteratorWithIndex(), itk::ImageScanlineConstIterator< RLEImage< TPixel, VImageDimension, CounterType > >::ImageScanlineConstIterator(), itk::ImageScanlineConstIterator< TImage >::ImageScanlineConstIterator(), itk::ImageIterator< RLEImage< TPixel, VImageDimension, CounterType > >::operator=(), itk::ImageScanlineIterator< RLEImage< TPixel, VImageDimension, CounterType > >::operator=(), and itk::ImageRegionIterator< RLEImage< TPixel, VImageDimension, CounterType > >::operator=().
|
inline |
Comparison operator. Two iterators are the same if they "point to" the same memory location
Definition at line 259 of file itkImageConstIterator.h.
|
inline |
Comparison operator. An iterator is "greater than" another if it "points to" a higher location.
Definition at line 298 of file itkImageConstIterator.h.
|
inline |
Comparison operator. An iterator is "greater than" another if it "points to" a higher location.
Definition at line 288 of file itkImageConstIterator.h.
|
inlinevirtual |
Set the index. No bounds checking is performed.
Reimplemented in itk::ImageRegionConstIterator< TImage >, itk::ImageRegionConstIterator< ImageType >, itk::ImageRegionConstIterator< BufferType >, and itk::ImageScanlineConstIterator< TImage >.
Definition at line 314 of file itkImageConstIterator.h.
|
inlinevirtual |
Set the region of the image to iterate over.
Definition at line 206 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIterator< RLEImage< TPixel, VImageDimension, CounterType > >::ImageConstIterator().
|
inline |
Return a const reference to the pixel This method will provide the fastest access to pixel data, but it will NOT support ImageAdaptors.
Definition at line 333 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIterator< RLEImage< TPixel, VImageDimension, CounterType > >::Get(), and itk::ImageConstIterator< RLEImage< TPixel, VImageDimension, CounterType > >::Value().
|
static |
Dimension of the image 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 95 of file itkImageConstIterator.h.
|
protected |
Constructor establishes an iterator to walk a particular image and a particular region of that image.
Definition at line 382 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIterator< BufferType >::ImageConstIterator(), and itk::ImageConstIterator< BufferType >::operator=().
|
protected |
Constructor establishes an iterator to walk a particular image and a particular region of that image.
Definition at line 385 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIterator< BufferType >::ImageConstIterator(), itk::ImageConstIterator< BufferType >::operator!=(), itk::ImageConstIterator< BufferType >::operator<(), itk::ImageConstIterator< BufferType >::operator<=(), itk::ImageConstIterator< RLEImage< TPixel, VImageDimension, CounterType > >::operator=(), itk::ImageConstIterator< BufferType >::operator=(), itk::ImageConstIterator< BufferType >::operator==(), itk::ImageConstIterator< BufferType >::operator>(), itk::ImageConstIterator< BufferType >::operator>=(), and itk::ImageConstIterator< RLEImage< TPixel, VImageDimension, CounterType > >::SetRegion().
|
protected |
Constructor establishes an iterator to walk a particular image and a particular region of that image.
Definition at line 383 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIterator< BufferType >::ImageConstIterator(), and itk::ImageConstIterator< BufferType >::operator=().
|
protected |
Constructor establishes an iterator to walk a particular image and a particular region of that image.
Definition at line 377 of file itkImageConstIterator.h.
Referenced by itk::ImageIterator< RLEImage< TPixel, VImageDimension, CounterType > >::GetImage(), itk::ImageConstIterator< RLEImage< TPixel, VImageDimension, CounterType > >::GetImage(), itk::ImageConstIterator< RLEImage< TPixel, VImageDimension, CounterType > >::GetIndex(), itk::ImageConstIterator< RLEImage< TPixel, VImageDimension, CounterType > >::GetRegion(), itk::ImageConstIterator< RLEImage< TPixel, VImageDimension, CounterType > >::ImageConstIterator(), itk::ImageConstIterator< BufferType >::ImageConstIterator(), itk::ImageConstIterator< RLEImage< TPixel, VImageDimension, CounterType > >::operator=(), itk::ImageConstIterator< BufferType >::operator=(), itk::ImageScanlineIterator< RLEImage< TPixel, VImageDimension, CounterType > >::Set(), itk::ImageRegionIterator< RLEImage< TPixel, VImageDimension, CounterType > >::Set(), itk::ImageIterator< RLEImage< TPixel, VImageDimension, CounterType > >::Set(), itk::ImageConstIterator< RLEImage< TPixel, VImageDimension, CounterType > >::SetIndex(), and itk::ImageConstIterator< RLEImage< TPixel, VImageDimension, CounterType > >::SetRegion().
|
protected |
Constructor establishes an iterator to walk a particular image and a particular region of that image.
Definition at line 381 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIterator< BufferType >::ImageConstIterator(), itk::ImageConstIterator< BufferType >::operator!=(), itk::ImageConstIterator< BufferType >::operator<(), itk::ImageConstIterator< BufferType >::operator<=(), itk::ImageConstIterator< BufferType >::operator=(), itk::ImageConstIterator< BufferType >::operator==(), itk::ImageConstIterator< BufferType >::operator>(), and itk::ImageConstIterator< BufferType >::operator>=().
|
protected |
Constructor establishes an iterator to walk a particular image and a particular region of that image.
Definition at line 387 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIterator< BufferType >::ImageConstIterator(), and itk::ImageConstIterator< BufferType >::operator=().
|
protected |
Constructor establishes an iterator to walk a particular image and a particular region of that image.
Definition at line 388 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIterator< BufferType >::ImageConstIterator(), and itk::ImageConstIterator< BufferType >::operator=().
|
protected |
Constructor establishes an iterator to walk a particular image and a particular region of that image.
Definition at line 379 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIterator< BufferType >::ImageConstIterator(), and itk::ImageConstIterator< BufferType >::operator=().