A multi-dimensional iterator templated over image type that walks a region of pixels. More...
#include <itkImageRegionIterator.h>
A multi-dimensional iterator templated over image type that walks a region of pixels.
The itk::ImageRegionIterator is optimized for iteration speed and is the first choice for iterative, pixel-wise operations on an image. ImageRegionIterator is the least specialized of the ITK image iterator classes. ImageRegionIterator is templated over the image type, and is constrained to walk only within the specified region and along a line parallel to one of the coordinate axes, "wrapping" to the next line as it reaches the boundary of the image. To walk the entire image, specify the region to be image->GetRequestedRegion()
.
Most of the functionality is inherited from the ImageRegionConstIterator. The current class only adds write access to image pixels.
Definition at line 72 of file itkImageRegionIterator.h.
typedef TImage::AccessorFunctorType itk::ImageConstIterator< TImage >::AccessorFunctorType [inherited] |
Definition at line 131 of file itkImageConstIterator.h.
typedef Superclass::AccessorType itk::ImageRegionIterator< TImage >::AccessorType |
Accessor type that convert data between internal and external representations.
Reimplemented from itk::ImageRegionConstIterator< TImage >.
Definition at line 92 of file itkImageRegionIterator.h.
typedef Superclass::ImageType itk::ImageRegionIterator< TImage >::ImageType |
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::ImageRegionConstIterator< TImage >.
Definition at line 87 of file itkImageRegionIterator.h.
typedef Superclass::IndexType itk::ImageRegionIterator< TImage >::IndexType |
Types inherited from the Superclass
Reimplemented from itk::ImageRegionConstIterator< TImage >.
Definition at line 80 of file itkImageRegionIterator.h.
typedef Superclass::IndexValueType itk::ImageRegionIterator< TImage >::IndexValueType |
Reimplemented from itk::ImageConstIterator< TImage >.
Definition at line 81 of file itkImageRegionIterator.h.
typedef Superclass::InternalPixelType itk::ImageRegionIterator< TImage >::InternalPixelType |
Internal Pixel Type
Reimplemented from itk::ImageRegionConstIterator< TImage >.
Definition at line 90 of file itkImageRegionIterator.h.
typedef Superclass::OffsetType itk::ImageRegionIterator< TImage >::OffsetType |
Offset typedef support.
Reimplemented from itk::ImageConstIterator< TImage >.
Definition at line 84 of file itkImageRegionIterator.h.
typedef Superclass::OffsetValueType itk::ImageRegionIterator< TImage >::OffsetValueType |
Reimplemented from itk::ImageConstIterator< TImage >.
Definition at line 85 of file itkImageRegionIterator.h.
typedef Superclass::PixelContainer itk::ImageRegionIterator< 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.
Reimplemented from itk::ImageRegionConstIterator< TImage >.
Definition at line 88 of file itkImageRegionIterator.h.
typedef Superclass::PixelContainerPointer itk::ImageRegionIterator< TImage >::PixelContainerPointer |
Reimplemented from itk::ImageRegionConstIterator< TImage >.
Definition at line 89 of file itkImageRegionIterator.h.
typedef Superclass::PixelType itk::ImageRegionIterator< TImage >::PixelType |
External Pixel Type
Reimplemented from itk::ImageRegionConstIterator< TImage >.
Definition at line 91 of file itkImageRegionIterator.h.
typedef Superclass::RegionType itk::ImageRegionIterator< TImage >::RegionType |
Region typedef support.
Reimplemented from itk::ImageRegionConstIterator< TImage >.
Definition at line 86 of file itkImageRegionIterator.h.
typedef ImageRegionIterator itk::ImageRegionIterator< TImage >::Self |
Standard class typedefs.
Reimplemented from itk::ImageRegionConstIterator< TImage >.
Definition at line 76 of file itkImageRegionIterator.h.
typedef Superclass::SizeType itk::ImageRegionIterator< TImage >::SizeType |
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::ImageRegionConstIterator< TImage >.
Definition at line 82 of file itkImageRegionIterator.h.
typedef Superclass::SizeValueType itk::ImageRegionIterator< TImage >::SizeValueType |
Reimplemented from itk::ImageConstIterator< TImage >.
Definition at line 83 of file itkImageRegionIterator.h.
typedef ImageRegionConstIterator<TImage> itk::ImageRegionIterator< TImage >::Superclass |
Reimplemented from itk::ImageRegionConstIterator< TImage >.
Definition at line 77 of file itkImageRegionIterator.h.
itk::ImageRegionIterator< TImage >::ImageRegionIterator | ( | ) |
Default constructor. Needed since we provide a cast constructor.
itk::ImageRegionIterator< TImage >::ImageRegionIterator | ( | ImageType * | ptr, | |
const RegionType & | region | |||
) |
Constructor establishes an iterator to walk a particular image and a particular region of that image.
itk::ImageRegionIterator< TImage >::ImageRegionIterator | ( | const ImageIterator< TImage > & | it | ) |
Constructor that can be used to cast from an ImageIterator to an ImageRegionIterator. Many routines return an ImageIterator but for a particular task, you may want an ImageRegionIterator. Rather than provide overloaded APIs that return different types of Iterators, itk returns ImageIterators and uses constructors to cast from an ImageIterator to a ImageRegionIterator.
itk::ImageRegionIterator< TImage >::ImageRegionIterator | ( | const ImageRegionConstIterator< TImage > & | it | ) | [protected] |
the construction from a const iterator is declared protected in order to enforce const correctness.
Self itk::ImageRegionIterator< TImage >::Begin | ( | void | ) | const |
Return an iterator for the beginning of the region. "Begin" is defined as the first pixel in the region.
Reimplemented from itk::ImageRegionConstIterator< TImage >.
Self itk::ImageRegionIterator< TImage >::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.
Reimplemented from itk::ImageRegionConstIterator< TImage >.
PixelType itk::ImageConstIterator< TImage >::Get | ( | void | ) | const [inline, inherited] |
Get the pixel value
Definition at line 326 of file itkImageConstIterator.h.
const ImageType* itk::ImageConstIterator< TImage >::GetImage | ( | ) | const [inline, inherited] |
Get the image that this iterator walks.
Reimplemented in itk::ImageIterator< TImage >.
Definition at line 322 of file itkImageConstIterator.h.
Referenced by itk::ImageReverseConstIterator< TImage >::ImageReverseConstIterator(), and itk::ImageReverseConstIterator< TImage >::operator=().
static unsigned int itk::ImageConstIterator< TImage >::GetImageIteratorDimension | ( | ) | [inline, static, inherited] |
Get the dimension (size) of the index.
Definition at line 237 of file itkImageConstIterator.h.
const IndexType itk::ImageConstIterator< TImage >::GetIndex | ( | void | ) | const [inline, inherited] |
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 308 of file itkImageConstIterator.h.
Referenced by itk::ImageReverseConstIterator< TImage >::ImageReverseConstIterator(), itk::ImageRegionReverseConstIterator< TImage >::operator--(), and itk::ImageReverseConstIterator< TImage >::operator=().
virtual const char* itk::ImageRegionConstIterator< TImage >::GetNameOfClass | ( | ) | const [virtual, inherited] |
Run-time type information (and related methods).
const RegionType& itk::ImageConstIterator< TImage >::GetRegion | ( | ) | const [inline, inherited] |
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 318 of file itkImageConstIterator.h.
Referenced by itk::ImageReverseConstIterator< TImage >::ImageReverseConstIterator(), and itk::ImageReverseConstIterator< TImage >::operator=().
void itk::ImageRegionConstIterator< TImage >::GoToBegin | ( | void | ) | [inline, inherited] |
Move an iterator to the beginning of the region. "Begin" is defined as the first pixel in the region.
Reimplemented from itk::ImageConstIterator< TImage >.
Definition at line 210 of file itkImageRegionConstIterator.h.
void itk::ImageRegionConstIterator< TImage >::GoToEnd | ( | void | ) | [inline, inherited] |
Move an iterator to the end of the region. "End" is defined as one pixel past the last pixel of the region.
Reimplemented from itk::ImageConstIterator< TImage >.
Definition at line 221 of file itkImageRegionConstIterator.h.
bool itk::ImageConstIterator< TImage >::IsAtBegin | ( | void | ) | const [inline, inherited] |
Is the iterator at the beginning of the region? "Begin" is defined as the first pixel in the region.
Definition at line 363 of file itkImageConstIterator.h.
bool itk::ImageConstIterator< TImage >::IsAtEnd | ( | void | ) | const [inline, inherited] |
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 370 of file itkImageConstIterator.h.
bool itk::ImageConstIterator< TImage >::operator!= | ( | const Self & | it | ) | const [inline, inherited] |
Comparison operator. Two iterators are the same if they "point to" the same memory location
Definition at line 243 of file itkImageConstIterator.h.
Self& itk::ImageRegionConstIterator< TImage >::operator++ | ( | ) | [inline, inherited] |
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.
Definition at line 261 of file itkImageRegionConstIterator.h.
Self& itk::ImageRegionConstIterator< TImage >::operator-- | ( | ) | [inline, inherited] |
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.
Definition at line 278 of file itkImageRegionConstIterator.h.
bool itk::ImageConstIterator< TImage >::operator< | ( | const Self & | it | ) | const [inline, inherited] |
Comparison operator. An iterator is "less than" another if it "points to" a lower memory location.
Definition at line 274 of file itkImageConstIterator.h.
bool itk::ImageConstIterator< TImage >::operator<= | ( | const Self & | it | ) | const [inline, inherited] |
Comparison operator. An iterator is "less than" another if it "points to" a lower memory location.
Definition at line 263 of file itkImageConstIterator.h.
Self& itk::ImageRegionIterator< TImage >::operator= | ( | const ImageRegionConstIterator< TImage > & | it | ) | [protected] |
the construction from a const iterator is declared protected in order to enforce const correctness.
bool itk::ImageConstIterator< TImage >::operator== | ( | const Self & | it | ) | const [inline, inherited] |
Comparison operator. Two iterators are the same if they "point to" the same memory location
Definition at line 253 of file itkImageConstIterator.h.
bool itk::ImageConstIterator< TImage >::operator> | ( | const Self & | it | ) | const [inline, inherited] |
Comparison operator. An iterator is "greater than" another if it "points to" a higher location.
Definition at line 296 of file itkImageConstIterator.h.
bool itk::ImageConstIterator< TImage >::operator>= | ( | const Self & | it | ) | const [inline, inherited] |
Comparison operator. An iterator is "greater than" another if it "points to" a higher location.
Definition at line 285 of file itkImageConstIterator.h.
void itk::ImageRegionIterator< TImage >::Set | ( | const PixelType & | value | ) | const [inline] |
Set the pixel value
Definition at line 111 of file itkImageRegionIterator.h.
void itk::ImageRegionConstIterator< TImage >::SetIndex | ( | const IndexType & | ind | ) | [inline, virtual, inherited] |
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 244 of file itkImageRegionConstIterator.h.
PixelType& itk::ImageRegionIterator< TImage >::Value | ( | void | ) | [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 120 of file itkImageRegionIterator.h.
const PixelType& itk::ImageConstIterator< TImage >::Value | ( | void | ) | const [inline, inherited] |
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 332 of file itkImageConstIterator.h.
const unsigned int itk::ImageRegionConstIterator< TImage >::ImageIteratorDimension = Superclass::ImageIteratorDimension [static, inherited] |
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.
Reimplemented from itk::ImageConstIterator< TImage >.
Definition at line 120 of file itkImageRegionConstIterator.h.
unsigned long itk::ImageConstIterator< TImage >::m_BeginOffset [protected, inherited] |
Definition at line 381 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIterator< ImageType >::ImageConstIterator(), and itk::ImageConstIterator< ImageType >::operator=().
const InternalPixelType* itk::ImageConstIterator< TImage >::m_Buffer [protected, inherited] |
Definition at line 384 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIterator< ImageType >::ImageConstIterator(), itk::ImageConstIterator< ImageType >::operator!=(), itk::ImageConstIterator< ImageType >::operator<(), itk::ImageConstIterator< ImageType >::operator<=(), itk::ImageConstIterator< ImageType >::operator=(), itk::ImageConstIterator< ImageType >::operator==(), itk::ImageConstIterator< ImageType >::operator>(), and itk::ImageConstIterator< ImageType >::operator>=().
unsigned long itk::ImageConstIterator< TImage >::m_EndOffset [protected, inherited] |
Definition at line 382 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIterator< ImageType >::ImageConstIterator(), and itk::ImageConstIterator< ImageType >::operator=().
TImage::ConstWeakPointer itk::ImageConstIterator< TImage >::m_Image [protected, inherited] |
Definition at line 377 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIterator< ImageType >::ImageConstIterator(), and itk::ImageConstIterator< ImageType >::operator=().
unsigned long itk::ImageConstIterator< TImage >::m_Offset [protected, inherited] |
Definition at line 380 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIterator< ImageType >::ImageConstIterator(), itk::ImageConstIterator< ImageType >::operator!=(), itk::ImageConstIterator< ImageType >::operator<(), itk::ImageConstIterator< ImageType >::operator<=(), itk::ImageConstIterator< ImageType >::operator=(), itk::ImageConstIterator< ImageType >::operator==(), itk::ImageConstIterator< ImageType >::operator>(), and itk::ImageConstIterator< ImageType >::operator>=().
AccessorType itk::ImageConstIterator< TImage >::m_PixelAccessor [protected, inherited] |
Definition at line 386 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIterator< ImageType >::ImageConstIterator(), and itk::ImageConstIterator< ImageType >::operator=().
AccessorFunctorType itk::ImageConstIterator< TImage >::m_PixelAccessorFunctor [protected, inherited] |
Definition at line 387 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIterator< ImageType >::ImageConstIterator(), and itk::ImageConstIterator< ImageType >::operator=().
RegionType itk::ImageConstIterator< TImage >::m_Region [protected, inherited] |
Definition at line 378 of file itkImageConstIterator.h.
Referenced by itk::ImageConstIterator< ImageType >::ImageConstIterator(), and itk::ImageConstIterator< ImageType >::operator=().
unsigned long itk::ImageRegionConstIterator< TImage >::m_SpanBeginOffset [protected, inherited] |
Definition at line 290 of file itkImageRegionConstIterator.h.
unsigned long itk::ImageRegionConstIterator< TImage >::m_SpanEndOffset [protected, inherited] |
Definition at line 291 of file itkImageRegionConstIterator.h.