#include <itkImageRegionIterator.h>
Inheritance diagram for itk::ImageRegionIterator:
Public Types | |
typedef ImageRegionIterator | Self |
typedef ImageRegionConstIterator< TImage > | Superclass |
typedef Superclass::IndexType | IndexType |
typedef Superclass::IndexValueType | IndexValueType |
typedef Superclass::SizeType | SizeType |
typedef Superclass::SizeValueType | SizeValueType |
typedef Superclass::OffsetType | OffsetType |
typedef Superclass::OffsetValueType | OffsetValueType |
typedef Superclass::RegionType | RegionType |
typedef Superclass::ImageType | ImageType |
typedef Superclass::PixelContainer | PixelContainer |
typedef Superclass::PixelContainerPointer | PixelContainerPointer |
typedef Superclass::InternalPixelType | InternalPixelType |
typedef Superclass::PixelType | PixelType |
typedef Superclass::AccessorType | AccessorType |
Public Methods | |
ImageRegionIterator () | |
ImageRegionIterator (ImageType *ptr, const RegionType ®ion) | |
ImageRegionIterator (const ImageIteratorWithIndex< TImage > &it) | |
void | Set (const PixelType &value) const |
PixelType & | Value (void) |
Self | Begin (void) const |
Self | End (void) const |
Protected Methods | |
ImageRegionIterator (const ImageRegionConstIterator< TImage > &it) | |
Self & | operator= (const ImageRegionConstIterator< TImage > &it) |
ImageRegionIterator is a templated class to represent a multi-dimensional iterator. ImageRegionIterator is templated over the image type ImageRegionIterator 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 ImageRegionConstIterator. The current class only adds write access to image pixels.
Definition at line 45 of file itkImageRegionIterator.h.
|
Accessor type that convert data between internal and external representations. Reimplemented from itk::ImageRegionConstIterator< TImage >. Definition at line 65 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 60 of file itkImageRegionIterator.h. |
|
Types inherited from the Superclass Reimplemented from itk::ImageRegionConstIterator< TImage >. Definition at line 53 of file itkImageRegionIterator.h. |
|
Reimplemented from itk::ImageConstIterator< TImage >. Definition at line 54 of file itkImageRegionIterator.h. |
|
Internal Pixel Type Reimplemented from itk::ImageRegionConstIterator< TImage >. Definition at line 63 of file itkImageRegionIterator.h. |
|
Offset typedef support. Reimplemented from itk::ImageConstIterator< TImage >. Definition at line 57 of file itkImageRegionIterator.h. |
|
Reimplemented from itk::ImageConstIterator< TImage >. Definition at line 58 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 61 of file itkImageRegionIterator.h. |
|
Reimplemented from itk::ImageRegionConstIterator< TImage >. Definition at line 62 of file itkImageRegionIterator.h. |
|
External Pixel Type Reimplemented from itk::ImageRegionConstIterator< TImage >. Definition at line 64 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 59 of file itkImageRegionIterator.h. |
|
Standard class typedefs. Reimplemented from itk::ImageRegionConstIterator< TImage >. Definition at line 49 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 55 of file itkImageRegionIterator.h. |
|
Reimplemented from itk::ImageConstIterator< TImage >. Definition at line 56 of file itkImageRegionIterator.h. |
|
Reimplemented from itk::ImageRegionConstIterator< TImage >. Definition at line 50 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 84 of file itkImageRegionIterator.h. References itk::ImageConstIterator< TImage >::m_Buffer, itk::ImageConstIterator< TImage >::m_Offset, itk::ImageConstIterator< TImage >::m_PixelAccessor, and 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 90 of file itkImageRegionIterator.h. References itk::ImageConstIterator< TImage >::m_Buffer, itk::ImageConstIterator< TImage >::m_Offset, and itk::ImageRegionIterator< TImage >::PixelType. |