#include <itkImageRegionIterator.h>
Inheritance diagram for itk::ImageRegionIterator< TImage >:
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.
ConstShapedNeighborhoodIterator
CorrespondenceDataStructureIterator
FloodFilledFunctionConditionalConstIterator
FloodFilledImageFunctionConditionalConstIterator
FloodFilledImageFunctionConditionalIterator
FloodFilledSpatialFunctionConditionalConstIterator
FloodFilledSpatialFunctionConditionalIterator
ImageLinearConstIteratorWithIndex
ImageRandomConstIteratorWithIndex
ImageRegionConstIteratorWithIndex
ImageRegionExclusionConstIteratorWithIndex
ImageRegionExclusionIteratorWithIndex
ImageRegionReverseConstIterator
Definition at line 73 of file itkImageRegionIterator.h.
|
Accessor type that convert data between internal and external representations. Reimplemented from itk::ImageRegionConstIterator< TImage >. Definition at line 93 of file itkImageRegionIterator.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::ImageRegionConstIterator< TImage >. Definition at line 88 of file itkImageRegionIterator.h. |
|
Types inherited from the Superclass Reimplemented from itk::ImageRegionConstIterator< TImage >. Definition at line 81 of file itkImageRegionIterator.h. |
|
Reimplemented from itk::ImageConstIterator< TImage >. Definition at line 82 of file itkImageRegionIterator.h. |
|
Internal Pixel Type Reimplemented from itk::ImageRegionConstIterator< TImage >. Definition at line 91 of file itkImageRegionIterator.h. |
|
Offset typedef support. Reimplemented from itk::ImageConstIterator< TImage >. Definition at line 85 of file itkImageRegionIterator.h. |
|
Reimplemented from itk::ImageConstIterator< TImage >. Definition at line 86 of file itkImageRegionIterator.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::ImageRegionConstIterator< TImage >. Definition at line 89 of file itkImageRegionIterator.h. |
|
Reimplemented from itk::ImageRegionConstIterator< TImage >. Definition at line 90 of file itkImageRegionIterator.h. |
|
External Pixel Type Reimplemented from itk::ImageRegionConstIterator< TImage >. Definition at line 92 of file itkImageRegionIterator.h. Referenced by itk::ImageRegionIterator< TImage >::Set(), and itk::ImageRegionIterator< TImage >::Value(). |
|
Region typedef support. Reimplemented from itk::ImageRegionConstIterator< TImage >. Definition at line 87 of file itkImageRegionIterator.h. |
|
Standard class typedefs. Reimplemented from itk::ImageRegionConstIterator< TImage >. Definition at line 77 of file itkImageRegionIterator.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::ImageRegionConstIterator< TImage >. Definition at line 83 of file itkImageRegionIterator.h. |
|
Reimplemented from itk::ImageConstIterator< TImage >. Definition at line 84 of file itkImageRegionIterator.h. |
|
Reimplemented from itk::ImageRegionConstIterator< TImage >. Definition at line 78 of file itkImageRegionIterator.h. |
|
Default constructor. Needed since we provide a cast constructor. |
|
Constructor establishes an iterator to walk a particular image and a particular region of that image. |
|
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. |
|
the construction from a const iterator is declared protected in order to enforce const correctness. |
|
Return an iterator for the beginning of the region. "Begin" is defined as the first pixel in the region.
Reimplemented from itk::ImageRegionConstIterator< 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::ImageRegionConstIterator< TImage >. |
|
the construction from a const iterator is declared protected in order to enforce const correctness. |
|
Set the pixel value Definition at line 112 of file itkImageRegionIterator.h. References itk::ImageRegionIterator< TImage >::PixelType. |
|
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 121 of file itkImageRegionIterator.h. References itk::ImageRegionIterator< TImage >::PixelType. |