#include <itkImageRegionConstIterator.h>
Inheritance diagram for itk::ImageRegionConstIterator< TImage >:
image->GetLargestPossibleRegion()
.ImageRegionConstIterator provides read-only access to image data. Its behavior is similar to the one of ImageRegionIterator with the exception of lacking a Set() method.
ImageRegionConstIterator 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, ImageRegionConstIterator holds a reference to the image over which it is traversing.
ImageRegionConstIterator assumes a particular layout of the image data. The is arranged in a 1D array as if it were [][][][slice][row][col] with Index[0] = col, Index[1] = row, Index[2] = slice, etc.
operator++ provides a simple syntax for walking around a region of a multidimensional image. operator++ iterates across a row, constraining the movement to within a region of image. When the iterator reaches the boundary of the region along a row, the iterator automatically wraps to the next row, starting at the first pixel in the row that is part of the region. This allows for simple processing loops of the form:
it = it.Begin();
for (; !it.IsAtEnd(); ++it)
{
*it += 100.0;
}
Definition at line 74 of file itkImageRegionConstIterator.h.
|
Accessor type that convert data between internal and external representations. Reimplemented from itk::ImageConstIterator< TImage >.
Reimplemented in itk::ImageRegionIterator< TImage >. Definition at line 117 of file itkImageRegionConstIterator.h. |
|
Image typedef support. While this was already typdef'ed in the superclass it needs to be redone here for this subclass to compile properly with gcc. Reimplemented from itk::ImageConstIterator< TImage >.
Reimplemented in itk::ImageRegionIterator< TImage >. Definition at line 101 of file itkImageRegionConstIterator.h. Referenced by itk::ImageRegionConstIterator< TImage >::ImageRegionConstIterator(). |
|
Index typedef support. While this was already typdef'ed in the superclass it needs to be redone here for this subclass to compile properly with gcc. Reimplemented from itk::ImageConstIterator< TImage >.
Reimplemented in itk::ImageRegionIterator< TImage >. Definition at line 90 of file itkImageRegionConstIterator.h. Referenced by itk::ImageRegionConstIterator< TImage >::ImageRegionConstIterator(), itk::ImageRegionConstIterator< TImage >::operator++(), and itk::ImageRegionConstIterator< TImage >::operator--(). |
|
Internal Pixel Type Reimplemented from itk::ImageConstIterator< TImage >.
Reimplemented in itk::ImageRegionIterator< TImage >. Definition at line 110 of file itkImageRegionConstIterator.h. |
|
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. Reimplemented from itk::ImageConstIterator< TImage >.
Reimplemented in itk::ImageRegionIterator< TImage >. Definition at line 106 of file itkImageRegionConstIterator.h. |
|
Reimplemented from itk::ImageConstIterator< TImage >.
Reimplemented in itk::ImageRegionIterator< TImage >. Definition at line 107 of file itkImageRegionConstIterator.h. |
|
External Pixel Type Reimplemented from itk::ImageConstIterator< TImage >.
Reimplemented in itk::ImageRegionIterator< TImage >. Definition at line 113 of file itkImageRegionConstIterator.h. |
|
Region typedef support. Reimplemented from itk::ImageConstIterator< TImage >.
Reimplemented in itk::ImageRegionIterator< TImage >. Definition at line 97 of file itkImageRegionConstIterator.h. Referenced by itk::ImageRegionConstIterator< TImage >::ImageRegionConstIterator(). |
|
Standard class typedef. Reimplemented from itk::ImageConstIterator< TImage >.
Reimplemented in itk::ImageRegionIterator< TImage >. Definition at line 78 of file itkImageRegionConstIterator.h. |
|
Size typedef support. While this was already typdef'ed in the superclass it needs to be redone here for this subclass to compile properly with gcc. Reimplemented from itk::ImageConstIterator< TImage >.
Reimplemented in itk::ImageRegionIterator< TImage >. Definition at line 94 of file itkImageRegionConstIterator.h. Referenced by itk::ImageRegionConstIterator< TImage >::operator++(), and itk::ImageRegionConstIterator< TImage >::operator--(). |
|
Reimplemented in itk::ImageRegionIterator< TImage >. Definition at line 79 of file itkImageRegionConstIterator.h. |
|
Default constructor. Needed since we provide a cast constructor. Definition at line 123 of file itkImageRegionConstIterator.h. |
|
Constructor establishes an iterator to walk a particular image and a particular region of that image. Definition at line 131 of file itkImageRegionConstIterator.h. References itk::ImageRegionConstIterator< TImage >::ImageType, and itk::ImageRegionConstIterator< TImage >::RegionType. |
|
Constructor that can be used to cast from an ImageIterator to an ImageRegionConstIterator. Many routines return an ImageIterator but for a particular task, you may want an ImageRegionConstIterator. Rather than provide overloaded APIs that return different types of Iterators, itk returns ImageIterators and uses constructors to cast from an ImageIterator to a ImageRegionConstIterator. Definition at line 146 of file itkImageRegionConstIterator.h. References itk::ImageRegionConstIterator< TImage >::IndexType. |
|
Constructor that can be used to cast from an ImageConstIterator to an ImageRegionConstIterator. Many routines return an ImageIterator but for a particular task, you may want an ImageRegionConstIterator. Rather than provide overloaded APIs that return different types of Iterators, itk returns ImageIterators and uses constructors to cast from an ImageIterator to a ImageRegionConstIterator. Definition at line 163 of file itkImageRegionConstIterator.h. References itk::ImageRegionConstIterator< TImage >::IndexType. |
|
Return an iterator for the beginning of the region. "Begin" is defined as the first pixel in the region.
Reimplemented from itk::ImageConstIterator< TImage >.
Reimplemented in itk::ImageRegionIterator< TImage >.
|
|
Return an iterator for the end of the region. "End" is defined as one pixel past the last pixel of the region.
Reimplemented from itk::ImageConstIterator< TImage >.
Reimplemented in itk::ImageRegionIterator< TImage >.
|
|
Run-time type information (and related methods). |
|
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. |
|
Increment (prefix) the fastest moving dimension of the iterator's index. This operator will constrain the iterator within the region (i.e. the iterator will automatically wrap from the end of the row of the region to the beginning of the next row of the region) up until the iterator tries to moves past the last pixel of the region. Here, the iterator will be set to be one pixel past the end of the region.
References itk::ImageRegionConstIterator< TImage >::IndexType, and itk::ImageRegionConstIterator< TImage >::SizeType. |
|
Decrement (prefix) the fastest moving dimension of the iterator's index. This operator will constrain the iterator within the region (i.e. the iterator will automatically wrap from the beginning of the row of the region to the end of the next row of the region) up until the iterator tries to moves past the first pixel of the region. Here, the iterator will be set to be one pixel past the beginning of the region.
References itk::ImageRegionConstIterator< TImage >::IndexType, and itk::ImageRegionConstIterator< TImage >::SizeType. |
|
Set the index. No bounds checking is performed. This is overridden from the parent because we have an extra ivar.
Reimplemented from itk::ImageConstIterator< TImage >. Definition at line 188 of file itkImageRegionConstIterator.h. |
|
Definition at line 313 of file itkImageRegionConstIterator.h. |
|
Definition at line 314 of file itkImageRegionConstIterator.h. |