#include <itkReflectiveImageRegionConstIterator.h>
Inheritance diagram for itk::ReflectiveImageRegionConstIterator:
Public Types | |
typedef ReflectiveImageRegionConstIterator | Self |
typedef ImageConstIteratorWithIndex< TImage > | Superclass |
typedef TImage::IndexType | IndexType |
typedef TImage | ImageType |
typedef TImage::PixelContainer | PixelContainer |
typedef PixelContainer::Pointer | PixelContainerPointer |
typedef TImage::RegionType | RegionType |
Public Methods | |
ReflectiveImageRegionConstIterator () | |
~ReflectiveImageRegionConstIterator () | |
ReflectiveImageRegionConstIterator (TImage *ptr, const RegionType ®ion) | |
ReflectiveImageRegionConstIterator (const ImageConstIteratorWithIndex< TImage > &it) | |
bool | IsReflected (unsigned int) const |
Self & | operator++ () |
void | GoToBegin (void) |
|
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. Note that we have to rescope Image back to itk::Image to that is it not confused with ImageIterator::Image. Reimplemented from itk::ImageConstIteratorWithIndex< TImage >. Reimplemented in itk::ReflectiveImageRegionIterator< TImage >. Definition at line 59 of file itkReflectiveImageRegionConstIterator.h. |
|
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. Note that we have to rescope Index back to itk::Index to that is it not confused with ImageIterator::Index. Reimplemented from itk::ImageConstIteratorWithIndex< TImage >. Reimplemented in itk::ReflectiveImageRegionIterator< TImage >. Definition at line 53 of file itkReflectiveImageRegionConstIterator.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::ImageConstIteratorWithIndex< TImage >. Reimplemented in itk::ReflectiveImageRegionIterator< TImage >. Definition at line 65 of file itkReflectiveImageRegionConstIterator.h. |
|
Reimplemented from itk::ImageConstIteratorWithIndex< TImage >. Reimplemented in itk::ReflectiveImageRegionIterator< TImage >. Definition at line 66 of file itkReflectiveImageRegionConstIterator.h. |
|
Region 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. Note that we have to rescope Region back to itk::ImageRegion so that is it not confused with ImageIterator::Index. Reimplemented from itk::ImageConstIteratorWithIndex< TImage >. Reimplemented in itk::ReflectiveImageRegionIterator< TImage >. Definition at line 73 of file itkReflectiveImageRegionConstIterator.h. |
|
Standard class typedefs. Reimplemented from itk::ImageConstIteratorWithIndex< TImage >. Reimplemented in itk::ReflectiveImageRegionIterator< TImage >. Definition at line 46 of file itkReflectiveImageRegionConstIterator.h. |
|
Reimplemented in itk::ReflectiveImageRegionIterator< TImage >. Definition at line 47 of file itkReflectiveImageRegionConstIterator.h. |
|
Default constructor. Needed since we provide a cast constructor. |
|
Default destructor. Definition at line 79 of file itkReflectiveImageRegionConstIterator.h. |
|
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 ReflectiveImageRegionConstIterator. Many routines return an ImageIterator but for a particular task, you may want an ReflectiveImageRegionConstIterator. Rather than provide overloaded APIs that return different types of Iterators, itk returns ImageIterators and uses constructors to cast from * an ImageIterator to a ReflectiveImageRegionConstIterator. Definition at line 93 of file itkReflectiveImageRegionConstIterator.h. |
|
Move an iterator to the beginning of the region. Reimplemented from itk::ImageConstIteratorWithIndex< TImage >. |
|
|
|
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.
|