#include <itkSliceIterator.h>
A flexible iterator for itk containers(i.e. itk::Neighborhood) that support pixel access through operator[].
SliceIterator allows iteration along a std::slice through the container. A slice is a construct that defines a starting position, stride length (distance between adjacent elements), and a length.
Any container with operator[] is supported. Because it uses this interface the iterator is only as efficient as the implementation of a container's operator[] method.
References: Modeled after a slice iterator proposed by Bjarne Stroustrup in [111].
Definition at line 47 of file itkSliceIterator.h.
Public Member Functions | |
SliceIterator | Begin () |
SliceIterator | End () |
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION (SliceIterator) | |
TPixel & | operator* () |
SliceIterator | operator++ () |
SliceIterator | operator++ (int) |
bool | operator< (const SliceIterator &orig) const |
bool | operator== (const SliceIterator &orig) const |
TPixel & | operator[] (OffsetValueType n) |
SliceIterator (TContainer *n, std::slice s) | |
Private Member Functions | |
TPixel & | Loc (OffsetValueType n) const |
Private Attributes | |
TContainer * | m_ContainerPointer |
OffsetValueType | m_Pos { 0 } |
std::slice | m_Slice |
|
inline |
Constructor.
Definition at line 51 of file itkSliceIterator.h.
|
inline |
Returns a SliceIterator that points to the beginning of the slice.
Definition at line 58 of file itkSliceIterator.h.
|
inline |
Returns a SliceIterator that points to one past the end of the slice.
Definition at line 68 of file itkSliceIterator.h.
itk::SliceIterator< TPixel, TContainer >::ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION | ( | SliceIterator< TPixel, TContainer > | ) |
|
inlineprivate |
Returns the value located at position n of the slice.
Definition at line 134 of file itkSliceIterator.h.
Referenced by itk::SliceIterator< TPixel, Self >::operator*(), and itk::SliceIterator< TPixel, Self >::operator[]().
|
inline |
Dereferences the iterator, returning the value that it points to.
Definition at line 105 of file itkSliceIterator.h.
|
inline |
Increments the iterator.
Definition at line 78 of file itkSliceIterator.h.
|
inline |
Increments the iterator.
Definition at line 86 of file itkSliceIterator.h.
|
inline |
Returns the boolean < of two slice iterator positions. Result is only true if the slice iterators have the same stride and start location.
Definition at line 124 of file itkSliceIterator.h.
|
inline |
Returns the logical && of the boolean == of two slice iterator positions, stride, and start locations.
Definition at line 113 of file itkSliceIterator.h.
|
inline |
Returns the element at position n of the slice. Sets the iterator to point to position n.
Definition at line 97 of file itkSliceIterator.h.
|
private |
Pointer to the container referenced by the slice iterator.
Definition at line 144 of file itkSliceIterator.h.
|
private |
Current position within the slice.
Definition at line 147 of file itkSliceIterator.h.
Referenced by itk::SliceIterator< TPixel, Self >::Begin(), itk::SliceIterator< TPixel, Self >::End(), itk::SliceIterator< TPixel, Self >::operator<(), and itk::SliceIterator< TPixel, Self >::operator==().
|
private |
Slice structure information.
Definition at line 150 of file itkSliceIterator.h.
Referenced by itk::SliceIterator< TPixel, Self >::operator<(), and itk::SliceIterator< TPixel, Self >::operator==().