#include <itkImageIORegion.h>
Inheritance diagram for itk::ImageIORegion:
Public Types | |
typedef ImageIORegion | Self |
typedef Region | Superclass |
typedef std::vector< long > | IndexType |
typedef std::vector< long > | SizeType |
Public Methods | |
virtual const char * | GetClassName () const |
unsigned int | GetImageDimension () const |
virtual Superclass::RegionType | GetRegionType () const |
virtual | ~ImageIORegion () |
ImageIORegion (const Self ®ion) | |
void | operator= (const Self ®ion) |
void | SetIndex (const IndexType &index) |
const IndexType & | GetIndex () const |
void | SetSize (const SizeType &size) |
const SizeType & | GetSize () const |
unsigned long | GetNumberOfPixels () const |
ImageIORegion (unsigned int dimension) | |
ImageIORegion () | |
void | SetSize (const unsigned long i, long size) |
void | SetIndex (const unsigned long i, long idx) |
bool | operator== (const Self ®ion) const |
bool | operator!= (const Self ®ion) const |
bool | IsInside (const IndexType &index) const |
ImageIORegion is an class that represents some structured portion or piece of an Image. The ImageIORegion is represented with an index and a size in each of the n-dimensions of the image. (The index is the corner of the image, the size is the lengths of the image in each of the topological directions.) ImageIORegion is not templated over dimension, but uses dynamic arrays instead.
Definition at line 43 of file itkImageIORegion.h.
|
Index typedef support. An index is used to access pixel values. Definition at line 58 of file itkImageIORegion.h. |
|
Standard class typedefs. Reimplemented from itk::Region. Definition at line 47 of file itkImageIORegion.h. |
|
Size typedef support. A size is used to define region bounds. Definition at line 61 of file itkImageIORegion.h. |
|
Definition at line 48 of file itkImageIORegion.h. |
|
Constructor. ImageIORegion is a lightweight object that is not reference counted, so the constructor is public. Definition at line 69 of file itkImageIORegion.h. |
|
Constructor. ImageIORegion is a lightweight object that is not reference counted, so the constructor is public. Default dimension is 2. Definition at line 81 of file itkImageIORegion.h. |
|
Destructor. ImageIORegion is a lightweight object that is not reference counted, so the destructor is public. Definition at line 93 of file itkImageIORegion.h. |
|
Copy constructor. ImageIORegion is a lightweight object that is not reference counted, so the copy constructor is public. Definition at line 97 of file itkImageIORegion.h. |
|
Standard part of all itk objects. Reimplemented from itk::Region. |
|
Dimension of the image available at run time. Definition at line 54 of file itkImageIORegion.h. |
|
Get index defining the corner of the region. Definition at line 118 of file itkImageIORegion.h. References HardConnectedComponentImageFilter::SizeType. |
|
Get the number of pixels contained in this region. This just multiplies the size components. |
|
Return the region type. Images are described with structured regions. Implements itk::Region. Definition at line 64 of file itkImageIORegion.h. |
|
Get the size of the region. Definition at line 127 of file itkImageIORegion.h. |
|
Test if an index is inside Definition at line 163 of file itkImageIORegion.h. |
|
Compare two regions. Definition at line 151 of file itkImageIORegion.h. |
|
operator=. ImageIORegion is a lightweight object that is not reference counted, so operator= is public. Definition at line 106 of file itkImageIORegion.h. |
|
Compare two regions. Definition at line 139 of file itkImageIORegion.h. |
|
Convenience methods to set the size and index for the dimension i. Definition at line 133 of file itkImageIORegion.h. |
|
Set the index defining the corner of the region. Definition at line 114 of file itkImageIORegion.h. References HardConnectedComponentImageFilter::IndexType. |
|
Convenience methods to set the size and index for the dimension i. Definition at line 131 of file itkImageIORegion.h. |
|
Set the size of the region. This plus the index determines the rectangular shape, or extent, of the region. Definition at line 123 of file itkImageIORegion.h. References HardConnectedComponentImageFilter::SizeType. |