#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 |
void | ReinitializeSeed () |
void | ReinitializeSeed (int) |
ImageRandomConstIteratorWithIndex is a multi-dimensional iterator class that is templated over image type. ImageRandomConstIteratorWithIndex is constrained to walk only within the specified region. It samples random pixel positions at each increment or decrement.
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.
The operator++ method 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 }
ConstShapedNeighborhoodIterator
CorrespondenceDataStructureIterator
FloodFilledFunctionConditionalConstIterator
FloodFilledImageFunctionConditionalConstIterator
FloodFilledImageFunctionConditionalIterator
FloodFilledSpatialFunctionConditionalConstIterator
FloodFilledSpatialFunctionConditionalIterator
ImageLinearConstIteratorWithIndex
ImageRandomConstIteratorWithIndex
ImageRegionConstIteratorWithIndex
ImageRegionExclusionConstIteratorWithIndex
ImageRegionExclusionIteratorWithIndex
ImageRegionReverseConstIterator
Definition at line 113 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 136 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 124 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 141 of file itkImageRandomConstIteratorWithIndex.h. |
|
Reimplemented from itk::ImageConstIteratorWithIndex< TImage >. Reimplemented in itk::ImageRandomIteratorWithIndex< TImage >. Definition at line 142 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 130 of file itkImageRandomConstIteratorWithIndex.h. |
|
Standard class typedefs. Reimplemented from itk::ImageConstIteratorWithIndex< TImage >. Reimplemented in itk::ImageRandomIteratorWithIndex< TImage >. Definition at line 117 of file itkImageRandomConstIteratorWithIndex.h. |
|
Reimplemented in itk::ImageRandomIteratorWithIndex< TImage >. Definition at line 118 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 146 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 159 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 163 of file itkImageRandomConstIteratorWithIndex.h. |
|
Move an iterator to one position past the End of the region. Definition at line 171 of file itkImageRandomConstIteratorWithIndex.h. |
|
Is the iterator at the beginning of the region? Definition at line 179 of file itkImageRandomConstIteratorWithIndex.h. |
|
Is the iterator at the end of the region? Reimplemented from itk::ImageConstIteratorWithIndex< TImage >. Definition at line 183 of file itkImageRandomConstIteratorWithIndex.h. |
|
Increment (prefix) the selected dimension. No bounds checking is performed.
Definition at line 188 of file itkImageRandomConstIteratorWithIndex.h. |
|
Decrement (prefix) the selected dimension. No bounds checking is performed.
Definition at line 198 of file itkImageRandomConstIteratorWithIndex.h. |
|
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 |