#include <itkImageRegionReverseIterator.h>
Inheritance diagram for itk::ImageRegionReverseIterator< TImage >:


ImageRegionReverseIterator is a templated class to represent a multi-dimensional iterator. ImageRegionReverseIterator is templated over the image type ImageRegionReverseIterator is constrained to walk only within the specified region and along a line parallel to one of the coordinate axis.
Most of the functionality is inherited from the ImageRegionReverseConstIterator. 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 67 of file itkImageRegionReverseIterator.h.
|
|||||
|
Functor to choose the appropriate accessor. (for Image vs VectorImage) Definition at line 135 of file itkImageReverseConstIterator.h. |
|
|||||
|
Accessor type that convert data between internal and external representations. Reimplemented from itk::ImageRegionReverseConstIterator< TImage >. Definition at line 87 of file itkImageRegionReverseIterator.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::ImageRegionReverseConstIterator< TImage >. Definition at line 82 of file itkImageRegionReverseIterator.h. |
|
|||||
|
Types inherited from the Superclass Reimplemented from itk::ImageRegionReverseConstIterator< TImage >. Definition at line 75 of file itkImageRegionReverseIterator.h. |
|
|||||
|
Reimplemented from itk::ImageRegionReverseConstIterator< TImage >. Definition at line 76 of file itkImageRegionReverseIterator.h. |
|
|||||
|
Internal Pixel Type Reimplemented from itk::ImageRegionReverseConstIterator< TImage >. Definition at line 85 of file itkImageRegionReverseIterator.h. |
|
|||||
|
Offset 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::ImageRegionReverseConstIterator< TImage >. Definition at line 79 of file itkImageRegionReverseIterator.h. |
|
|||||
|
Reimplemented from itk::ImageRegionReverseConstIterator< TImage >. Definition at line 80 of file itkImageRegionReverseIterator.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::ImageRegionReverseConstIterator< TImage >. Definition at line 83 of file itkImageRegionReverseIterator.h. |
|
|||||
|
Reimplemented from itk::ImageRegionReverseConstIterator< TImage >. Definition at line 84 of file itkImageRegionReverseIterator.h. |
|
|||||
|
External Pixel Type Reimplemented from itk::ImageRegionReverseConstIterator< TImage >. Definition at line 86 of file itkImageRegionReverseIterator.h. |
|
|||||
|
Region typedef support. Reimplemented from itk::ImageRegionReverseConstIterator< TImage >. Definition at line 81 of file itkImageRegionReverseIterator.h. |
|
|||||
|
Standard class typedefs. Reimplemented from itk::ImageRegionReverseConstIterator< TImage >. Definition at line 71 of file itkImageRegionReverseIterator.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::ImageRegionReverseConstIterator< TImage >. Definition at line 77 of file itkImageRegionReverseIterator.h. |
|
|||||
|
Reimplemented from itk::ImageRegionReverseConstIterator< TImage >. Definition at line 78 of file itkImageRegionReverseIterator.h. |
|
|||||
|
Reimplemented from itk::ImageRegionReverseConstIterator< TImage >. Definition at line 72 of file itkImageRegionReverseIterator.h. |
|
|||||
|
Dimension of the image the iterator walks. This enum is needed so that 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 112 of file itkImageRegionReverseConstIterator.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 ImageConstIterator to an ImageRegionReverseIterator. Many routines return an ImageConstIterator but for a particular task, you may want an ImageRegionReverseIterator. Rather than provide overloaded APIs that return different types of Iterators, itk returns ImageConstIterators and uses constructors to cast from an ImageConstIterator to a ImageRegionReverseIterator. |
|
||||||||||
|
|
|
||||||||||
|
Return an iterator for the beginning of the region. "Begin" is defined as the first pixel in the region.
Reimplemented from itk::ImageRegionReverseConstIterator< 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::ImageRegionReverseConstIterator< TImage >. |
|
||||||||||
|
Get the pixel value Definition at line 379 of file itkImageReverseConstIterator.h. |
|
|||||||||
|
Get the dimension (size) of the index. Definition at line 286 of file itkImageReverseConstIterator.h. |
|
||||||||||
|
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 364 of file itkImageReverseConstIterator.h. |
|
|||||||||
|
Run-time type information (and related methods). |
|
|||||||||
|
Get the region that this iterator walks. ImageReverseConstIterators know the beginning and the end of the region of the image to iterate over. Definition at line 375 of file itkImageReverseConstIterator.h. |
|
||||||||||
|
Move an iterator to the beginning of the region. "Begin" for a reverse iterator is the last pixel in the region. Reimplemented from itk::ImageReverseConstIterator< TImage >. Definition at line 213 of file itkImageRegionReverseConstIterator.h. |
|
||||||||||
|
Move an iterator to the end of the region. "End" for a reverse iterator is defined as one pixel before the first pixel in the region. Reimplemented from itk::ImageReverseConstIterator< TImage >. Definition at line 225 of file itkImageRegionReverseConstIterator.h. |
|
||||||||||
|
Is the iterator at the beginning of the (reverse) region? "Begin" for a reverse iterator is the last pixel in the region. Definition at line 424 of file itkImageReverseConstIterator.h. |
|
||||||||||
|
Is the iterator at the end of the (reverse) region? "End" for a reverse iterator is one pixel before the first pixel in the region. Definition at line 431 of file itkImageReverseConstIterator.h. |
|
||||||||||||||||||||
|
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. |
|
|||||||||
|
iterator's index. For a reverse iterator, this moves backwards through the region. This operator will constrain the iterator within the region (i.e. the iterator will automatically wrap from the start of the row of the region to the end of the previous row of the region) up until the iterator tries to moves before the first pixel of the region. Here, the iterator will be set to be one pixel before the start of the region.
Definition at line 267 of file itkImageRegionReverseConstIterator.h. References itk::fem::done, and itk::fem::this. |
|
|||||||||
|
Decrement (prefix) the fastest moving dimension of the iterator's index. For a reverse iterator, this moves forward through the region. 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 start 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 325 of file itkImageRegionReverseConstIterator.h. References itk::fem::done, and itk::fem::this. |
|
||||||||||
|
Definition at line 292 of file itkImageReverseConstIterator.h. References itk::ImageReverseConstIterator< TImage >::m_Buffer, and itk::ImageReverseConstIterator< TImage >::m_Offset. |
|
||||||||||
|
Definition at line 302 of file itkImageReverseConstIterator.h. |
|
||||||||||
|
|
|
||||||||||
|
Definition at line 255 of file itkImageReverseConstIterator.h. |
|
||||||||||
|
Set the pixel value Reimplemented from itk::ImageReverseConstIterator< TImage >. Definition at line 106 of file itkImageRegionReverseIterator.h. References itk::fem::this. |
|
||||||||||
|
Set the index. No bounds checking is performed.
Reimplemented from itk::ImageReverseConstIterator< TImage >. Definition at line 250 of file itkImageRegionReverseConstIterator.h. |
|
||||||||||
|
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 389 of file itkImageReverseConstIterator.h. |
|
||||||||||
|
Return a reference to the pixel This method will provide the fastest access to pixel data, but it will NOT support ImageAdaptors. Reimplemented from itk::ImageReverseConstIterator< TImage >. Definition at line 112 of file itkImageRegionReverseIterator.h. |
|
|||||
|
Reimplemented from itk::ImageReverseConstIterator< TImage >. Definition at line 175 of file itkImageRegionReverseConstIterator.h. |
|
|||||
|
Definition at line 441 of file itkImageReverseConstIterator.h. Referenced by itk::ImageReverseConstIterator< TImage >::ImageReverseConstIterator(). |
|
|||||
|
|||||
|
Definition at line 442 of file itkImageReverseConstIterator.h. Referenced by itk::ImageReverseConstIterator< TImage >::ImageReverseConstIterator(). |
|
|||||
|
Definition at line 437 of file itkImageReverseConstIterator.h. Referenced by itk::ImageReverseConstIterator< TImage >::ImageReverseConstIterator(). |
|
|||||
|
|||||
|
Definition at line 446 of file itkImageReverseConstIterator.h. Referenced by itk::ImageReverseConstIterator< TImage >::ImageReverseConstIterator(). |
|
|||||
|
Definition at line 447 of file itkImageReverseConstIterator.h. Referenced by itk::ImageReverseConstIterator< TImage >::ImageReverseConstIterator(). |
|
|||||
|
Definition at line 438 of file itkImageReverseConstIterator.h. Referenced by itk::ImageReverseConstIterator< TImage >::ImageReverseConstIterator(). |
|
|||||
|
Definition at line 376 of file itkImageRegionReverseConstIterator.h. |
|
|||||
|
Definition at line 377 of file itkImageRegionReverseConstIterator.h. |
|
|||||
|
Reimplemented from itk::ImageReverseConstIterator< TImage >. Definition at line 175 of file itkImageRegionReverseConstIterator.h. |
1.4.2 written by Dimitri van Heesch,
© 1997-2000