#include <itkImageRegionMultidimensionalSplitter.h>
Inheritance diagram for itk::ImageRegionMultidimensionalSplitter< VImageDimension >:
Public Types | |
typedef ImageRegionMultidimensionalSplitter | Self |
typedef ImageRegionSplitter< VImageDimension > | Superclass |
typedef SmartPointer< Self > | Pointer |
typedef SmartPointer< const Self > | ConstPointer |
typedef Index< VImageDimension > | IndexType |
typedef Size< VImageDimension > | SizeType |
typedef ImageRegion< VImageDimension > | RegionType |
Public Member Functions | |
virtual const char * | GetNameOfClass () const |
itkStaticConstMacro (ImageDimension, unsigned int, VImageDimension) | |
virtual unsigned int | GetNumberOfSplits (const RegionType ®ion, unsigned int requestedNumber) |
virtual RegionType | GetSplit (unsigned int i, unsigned int numberOfPieces, const RegionType ®ion) |
Static Public Member Functions | |
Pointer | New () |
Protected Member Functions | |
ImageRegionMultidimensionalSplitter () | |
~ImageRegionMultidimensionalSplitter () | |
void | PrintSelf (std::ostream &os, Indent indent) const |
ImageRegionMultidimensionalSplitter divides an ImageRegion into smaller regions. ImageRegionMultidimensionalSplitter is used by the StreamingImageFilter to divide a requested output region into a series of smaller requests of the pipeline. This object has two basic methods: GetNumberOfSplits() and GetSplit().
GetNumberOfSplits() is used to determine how may subregions a given region can be divided. You call GetNumberOfSplits with an argument that is the number of subregions you want. If the image region can support that number of subregions, that number is returned. Otherwise, the maximum number of splits a region can support will be returned. For example, if a region splitter class only divides a region into horizontal slabs, then the maximum number of splits will be the number of rows in the region.
GetSplit() returns the ith of N subregions (as an ImageRegion object).
ImageRegionMultidimensionalSplitter class divides a region into hypercubes (as opposed to the slabs used by the superclass ImageRegionSplitter). In other words, it splits every dimension of the region to form ND rectangular prisms.
Definition at line 60 of file itkImageRegionMultidimensionalSplitter.h.
|
Reimplemented from itk::ImageRegionSplitter< VImageDimension >. Definition at line 67 of file itkImageRegionMultidimensionalSplitter.h. |
|
Index typedef support. An index is used to access pixel values. Reimplemented from itk::ImageRegionSplitter< VImageDimension >. Definition at line 79 of file itkImageRegionMultidimensionalSplitter.h. |
|
Reimplemented from itk::ImageRegionSplitter< VImageDimension >. Definition at line 66 of file itkImageRegionMultidimensionalSplitter.h. |
|
Region typedef support. Reimplemented from itk::ImageRegionSplitter< VImageDimension >. Definition at line 85 of file itkImageRegionMultidimensionalSplitter.h. |
|
Standard class typedefs. Reimplemented from itk::ImageRegionSplitter< VImageDimension >. Definition at line 64 of file itkImageRegionMultidimensionalSplitter.h. |
|
Size typedef support. A size is used to define region bounds. Reimplemented from itk::ImageRegionSplitter< VImageDimension >. Definition at line 82 of file itkImageRegionMultidimensionalSplitter.h. |
|
Reimplemented from itk::ImageRegionSplitter< VImageDimension >. Definition at line 65 of file itkImageRegionMultidimensionalSplitter.h. |
|
Definition at line 103 of file itkImageRegionMultidimensionalSplitter.h. |
|
Definition at line 104 of file itkImageRegionMultidimensionalSplitter.h. |
|
Run-time type information (and related methods). Reimplemented from itk::ImageRegionSplitter< VImageDimension >. |
|
How many pieces can the specifed region be split? A given region cannot always be divided into the requested number of pieces. For instance, if the numberOfPieces exceeds the number of pixels along a certain dimensions, then some splits will not be possible. This method returns a number less than or equal to the requested number of pieces. Reimplemented from itk::ImageRegionSplitter< VImageDimension >. |
|
Get a region definition that represents the ith piece a specified region. The "numberOfPieces" specified should be less than or equal to what GetNumberOfSplits() returns. Reimplemented from itk::ImageRegionSplitter< VImageDimension >. |
|
Dimension of the image available at compile time. Reimplemented from itk::ImageRegionSplitter< VImageDimension >. |
|
Method for creation through the object factory. Reimplemented from itk::ImageRegionSplitter< VImageDimension >. |
|
Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes. Reimplemented from itk::ImageRegionSplitter< VImageDimension >. |