ITK
4.3.0
Insight Segmentation and Registration Toolkit
|
#include <itkReflectiveImageRegionIterator.h>
Multi-dimensional image iterator which only walks a region.
ReflectiveImageRegionIterator is a templated class to represent a multi-dimensional iterator. ReflectiveImageRegionIterator is templated over the image type ReflectiveImageRegionIterator 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 ReflectiveImageRegionConstIterator. The current class only adds write access to image pixels.
Definition at line 44 of file itkReflectiveImageRegionIterator.h.
Protected Member Functions | |
ReflectiveImageRegionIterator (const ReflectiveImageRegionConstIterator< TImage > &it) | |
Self & | operator= (const ReflectiveImageRegionConstIterator< TImage > &it) |
Additional Inherited Members | |
Static Public Member Functions inherited from itk::ImageConstIteratorWithIndex< TImage > | |
static unsigned int | GetImageDimension () |
Static Public Attributes inherited from itk::ImageConstIteratorWithIndex< TImage > | |
static const unsigned int | ImageDimension = TImage::ImageDimension |
Protected Attributes inherited from itk::ImageConstIteratorWithIndex< TImage > | |
const InternalPixelType * | m_Begin |
IndexType | m_BeginIndex |
const InternalPixelType * | m_End |
IndexType | m_EndIndex |
TImage::ConstWeakPointer | m_Image |
OffsetValueType | m_OffsetTable [ImageDimension+1] |
AccessorType | m_PixelAccessor |
AccessorFunctorType | m_PixelAccessorFunctor |
const InternalPixelType * | m_Position |
IndexType | m_PositionIndex |
RegionType | m_Region |
bool | m_Remaining |
typedef Superclass::AccessorType itk::ReflectiveImageRegionIterator< TImage >::AccessorType |
Definition at line 64 of file itkReflectiveImageRegionIterator.h.
typedef Superclass::ImageType itk::ReflectiveImageRegionIterator< TImage >::ImageType |
Definition at line 59 of file itkReflectiveImageRegionIterator.h.
typedef Superclass::IndexType itk::ReflectiveImageRegionIterator< TImage >::IndexType |
Types inherited from the Superclass
Definition at line 52 of file itkReflectiveImageRegionIterator.h.
typedef Superclass::IndexValueType itk::ReflectiveImageRegionIterator< TImage >::IndexValueType |
Definition at line 53 of file itkReflectiveImageRegionIterator.h.
typedef Superclass::InternalPixelType itk::ReflectiveImageRegionIterator< TImage >::InternalPixelType |
Definition at line 62 of file itkReflectiveImageRegionIterator.h.
typedef Superclass::OffsetType itk::ReflectiveImageRegionIterator< TImage >::OffsetType |
Definition at line 56 of file itkReflectiveImageRegionIterator.h.
typedef Superclass::OffsetValueType itk::ReflectiveImageRegionIterator< TImage >::OffsetValueType |
Definition at line 57 of file itkReflectiveImageRegionIterator.h.
typedef Superclass::PixelContainer itk::ReflectiveImageRegionIterator< TImage >::PixelContainer |
Definition at line 60 of file itkReflectiveImageRegionIterator.h.
typedef Superclass::PixelContainerPointer itk::ReflectiveImageRegionIterator< TImage >::PixelContainerPointer |
Definition at line 61 of file itkReflectiveImageRegionIterator.h.
typedef Superclass::PixelType itk::ReflectiveImageRegionIterator< TImage >::PixelType |
Definition at line 63 of file itkReflectiveImageRegionIterator.h.
typedef Superclass::RegionType itk::ReflectiveImageRegionIterator< TImage >::RegionType |
Definition at line 58 of file itkReflectiveImageRegionIterator.h.
typedef ReflectiveImageRegionIterator itk::ReflectiveImageRegionIterator< TImage >::Self |
Standard class typedefs.
Definition at line 48 of file itkReflectiveImageRegionIterator.h.
typedef Superclass::SizeType itk::ReflectiveImageRegionIterator< TImage >::SizeType |
Definition at line 54 of file itkReflectiveImageRegionIterator.h.
typedef Superclass::SizeValueType itk::ReflectiveImageRegionIterator< TImage >::SizeValueType |
Definition at line 55 of file itkReflectiveImageRegionIterator.h.
typedef ReflectiveImageRegionConstIterator< TImage > itk::ReflectiveImageRegionIterator< TImage >::Superclass |
Definition at line 49 of file itkReflectiveImageRegionIterator.h.
itk::ReflectiveImageRegionIterator< TImage >::ReflectiveImageRegionIterator | ( | ) |
Default constructor. Needed since we provide a cast constructor.
itk::ReflectiveImageRegionIterator< TImage >::ReflectiveImageRegionIterator | ( | ImageType * | ptr, |
const RegionType & | region | ||
) |
Constructor establishes an iterator to walk a particular image and a particular region of that image.
itk::ReflectiveImageRegionIterator< TImage >::ReflectiveImageRegionIterator | ( | const ImageIteratorWithIndex< TImage > & | it | ) |
Constructor that can be used to cast from an ImageIterator to an ReflectiveImageRegionIterator. Many routines return an ImageIterator but for a particular task, you may want an ReflectiveImageRegionIterator. Rather than provide overloaded APIs that return different types of Iterators, itk returns ImageIterators and uses constructors to cast from an ImageIterator to a ReflectiveImageRegionIterator.
|
protected |
the construction from a const iterator is declared protected in order to enforce const correctness.
|
protected |
the construction from a const iterator is declared protected in order to enforce const correctness.
|
inline |
Set the pixel value
Definition at line 82 of file itkReflectiveImageRegionIterator.h.
|
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 88 of file itkReflectiveImageRegionIterator.h.