#include <itkImageRandomConstIteratorWithIndex.h>
Inheritance diagram for itk::ImageRandomConstIteratorWithIndex< TImage >:
Public Types | |
typedef ImageRandomConstIteratorWithIndex | Self |
typedef ImageConstIteratorWithIndex< TImage > | Superclass |
typedef TImage::IndexType | IndexType |
typedef TImage::RegionType | RegionType |
typedef TImage | ImageType |
typedef TImage::PixelContainer | PixelContainer |
typedef PixelContainer::Pointer | PixelContainerPointer |
Public Member Functions | |
ImageRandomConstIteratorWithIndex (const ImageType *ptr, const RegionType ®ion) | |
ImageRandomConstIteratorWithIndex (const ImageConstIteratorWithIndex< TImage > &it) | |
bool | IsAtBegin (void) const |
bool | IsAtEnd (void) const |
ImageRandomConstIteratorWithIndex () | |
~ImageRandomConstIteratorWithIndex () | |
void | GoToBegin (void) |
void | GoToEnd (void) |
Self & | operator++ () |
Self & | operator-- () |
void | SetNumberOfSamples (unsigned long number) |
unsigned long | GetNumberOfSamples (void) const |
Static Public Member Functions | |
void | ReinitializeSeed () |
void | ReinitializeSeed (int) |
ImageRandomConstIteratorWithIndex is a templated class to represent a multi-dimensional iterator. ImageRandomConstIteratorWithIndex is templated over the image type ImageRandomConstIteratorWithIndex is constrained to walk only within the specified region. It samples random pixel positions at each increment.
ImageRandomConstIteratorWithIndex is a multi-dimensional iterator, requiring more information be specified before the iterator can be used than conventional iterators. Whereas the std::vector::iterator from the STL only needs to be passed a pointer to establish the iterator, the multi-dimensional image iterator needs a pointer, the size of the buffer, the size of the region, the start index of the buffer, and the start index of the region. To gain access to this information, ImageRandomConstIteratorWithIndex holds a reference to the image over which it is traversing.
ImageRandomConstIteratorWithIndex assumes a particular layout of the image data. The is arranged in a 1D array as if it were [][][][slice][row][col] with Index[0] = col, Index[1] = row, Index[2] = slice, etc.
operator++ provides a simple syntax for walking around a region of a multidimensional image. operator++ performs a jump to a random position within the specified image region. This is designed to facilitate the extraction of random samples from the image.
This is the typical use of this iterator in a loop:
ImageRandomConstIteratorWithIndex<ImageType> it( image, image->GetRequestedRegion() ); it.SetNumberOfSamples(200); it.GoToBegin(); while( !it.IsAtEnd() ) { it.Get(); ++it; // here it jumps to another random position inside the region }
or
ImageRandomConstIteratorWithIndex<ImageType> it( image, image->GetRequestedRegion() ); it.SetNumberOfSamples(200); it.GoToEnd(); while( !it.IsAtBegin() ) { it.Get(); --it; // here it jumps to another random position inside the region }
Definition at line 95 of file itkImageRandomConstIteratorWithIndex.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. 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::ImageRandomIteratorWithIndex< TImage >. Definition at line 118 of file itkImageRandomConstIteratorWithIndex.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::ImageRandomIteratorWithIndex< TImage >. Definition at line 106 of file itkImageRandomConstIteratorWithIndex.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::ImageRandomIteratorWithIndex< TImage >. Definition at line 123 of file itkImageRandomConstIteratorWithIndex.h. |
|
Reimplemented from itk::ImageConstIteratorWithIndex< TImage >.
Reimplemented in itk::ImageRandomIteratorWithIndex< TImage >. Definition at line 124 of file itkImageRandomConstIteratorWithIndex.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::ImageRandomIteratorWithIndex< TImage >. Definition at line 112 of file itkImageRandomConstIteratorWithIndex.h. |
|
Standard class typedefs. Reimplemented from itk::ImageConstIteratorWithIndex< TImage >.
Reimplemented in itk::ImageRandomIteratorWithIndex< TImage >. Definition at line 99 of file itkImageRandomConstIteratorWithIndex.h. |
|
Reimplemented in itk::ImageRandomIteratorWithIndex< TImage >. Definition at line 100 of file itkImageRandomConstIteratorWithIndex.h. |
|
Default constructor. Needed since we provide a cast constructor. |
|
Default constructor. Needed since we provide a cast constructor. Definition at line 128 of file itkImageRandomConstIteratorWithIndex.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 ImageRandomConstIteratorWithIndex. Many routines return an ImageIterator but for a particular task, you may want an ImageRandomConstIteratorWithIndex. Rather than provide overloaded APIs that return different types of Iterators, itk returns ImageIterators and uses constructors to cast from an ImageIterator to a ImageRandomConstIteratorWithIndex. Definition at line 141 of file itkImageRandomConstIteratorWithIndex.h. |
|
Set/Get number of random samples to get from the image region |
|
Move an iterator to the beginning of the region. Reimplemented from itk::ImageConstIteratorWithIndex< TImage >. Definition at line 145 of file itkImageRandomConstIteratorWithIndex.h. |
|
Move an iterator to one position past the End of the region. Definition at line 153 of file itkImageRandomConstIteratorWithIndex.h. |
|
Is the iterator at the beginning of the region? Definition at line 161 of file itkImageRandomConstIteratorWithIndex.h. |
|
Is the iterator at the end of the region? Reimplemented from itk::ImageConstIteratorWithIndex< TImage >. Definition at line 165 of file itkImageRandomConstIteratorWithIndex.h. |
|
Increment (prefix) the selected dimension. No bounds checking is performed.
|
|
Decrement (prefix) the selected dimension. No bounds checking is performed.
|
|
Reinitialize the seed of the random number generator |
|
Reinitialize the seed of the random number generator |
|
Set/Get number of random samples to get from the image region |