Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itk::ImageIORegion Class Reference

#include <itkImageIORegion.h>

Inheritance diagram for itk::ImageIORegion:

Inheritance graph
[legend]
Collaboration diagram for itk::ImageIORegion:

Collaboration graph
[legend]

List of all members.


Detailed Description

An ImageIORegion represents a structured region of data.

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.

The first pixel of an image always have a Zero index. Therefore the index values of ImageIORegion may not directly correspond to those of ImageRegion. When translation between the two is performed one much consider the largest possible region who has a non-zero starting index for the image.

See also:
Region

ImageRegion

Index

Size

MeshRegion

Definition at line 53 of file itkImageIORegion.h.


Public Types

typedef std::vector
< IndexValueType
IndexType
typedef long IndexValueType
typedef Superclass::RegionType RegionType
typedef ImageIORegion Self
typedef std::vector
< SizeValueType
SizeType
typedef unsigned long SizeValueType
typedef Region Superclass

Public Member Functions

unsigned int GetImageDimension () const
const IndexTypeGetIndex () const
virtual const char * GetNameOfClass () const
unsigned int GetRegionDimension () const
virtual RegionType GetRegionType () const
const SizeTypeGetSize () const
 ImageIORegion (const Self &region)
 ImageIORegion ()
 ImageIORegion (unsigned int dimension)
bool IsInside (const Self &region) const
bool IsInside (const IndexType &index) const
bool operator!= (const Self &region) const
void operator= (const Self &region)
bool operator== (const Self &region) const
virtual void Print (std::ostream &os, Indent indent=0) const
void SetIndex (const IndexType &index)
void SetSize (const SizeType &size)
virtual ~ImageIORegion ()
IndexValueType GetIndex (unsigned long i) const
SizeValueType GetSize (unsigned long i) const
void SetIndex (const unsigned long i, IndexValueType idx)
void SetSize (const unsigned long i, SizeValueType size)

Protected Member Functions

virtual void PrintSelf (std::ostream &os, Indent indent) const
virtual void PrintHeader (std::ostream &os, Indent indent) const
virtual void PrintTrailer (std::ostream &os, Indent indent) const

Member Typedef Documentation

Index typedef support. An index is used to access pixel values.

Definition at line 66 of file itkImageIORegion.h.

Definition at line 62 of file itkImageIORegion.h.

Region type taken from the superclass

Reimplemented from itk::Region.

Definition at line 72 of file itkImageIORegion.h.

Standard class typedefs.

Reimplemented from itk::Region.

Definition at line 57 of file itkImageIORegion.h.

Size typedef support. A size is used to define region bounds.

Definition at line 69 of file itkImageIORegion.h.

typedef unsigned long itk::ImageIORegion::SizeValueType

these types correspond to those of itk::Size and itk::Index

Definition at line 61 of file itkImageIORegion.h.

Definition at line 58 of file itkImageIORegion.h.


Constructor & Destructor Documentation

itk::ImageIORegion::ImageIORegion ( unsigned int  dimension  ) 

Constructor. ImageIORegion is a lightweight object that is not reference counted, so the constructor is public.

itk::ImageIORegion::ImageIORegion (  ) 

Constructor. ImageIORegion is a lightweight object that is not reference counted, so the constructor is public. Default dimension is 2.

virtual itk::ImageIORegion::~ImageIORegion (  )  [virtual]

Destructor. ImageIORegion is a lightweight object that is not reference counted, so the destructor is public.

itk::ImageIORegion::ImageIORegion ( const Self region  ) 

Copy constructor. ImageIORegion is a lightweight object that is not reference counted, so the copy constructor is public.


Member Function Documentation

unsigned int itk::ImageIORegion::GetImageDimension (  )  const

Dimension of the image available at run time.

Referenced by itk::ImageIORegionAdaptor< VDimension >::Convert().

IndexValueType itk::ImageIORegion::GetIndex ( unsigned long  i  )  const

const IndexType& itk::ImageIORegion::GetIndex (  )  const

Get index defining the corner of the region.

Referenced by itk::ImageIORegionAdaptor< VDimension >::Convert().

virtual const char* itk::ImageIORegion::GetNameOfClass (  )  const [virtual]

Standard part of all itk objects.

Reimplemented from itk::Region.

unsigned int itk::ImageIORegion::GetRegionDimension (  )  const

Dimension of the region to be written. This differs from the the image dimension and is calculated at run-time by examining the size of the image in each coordinate direction.

virtual RegionType itk::ImageIORegion::GetRegionType (  )  const [virtual]

Return the region type. Images are described with structured regions.

Implements itk::Region.

SizeValueType itk::ImageIORegion::GetSize ( unsigned long  i  )  const

Convenience methods to get the size of the image in a particular coordinate direction i. Do not try to access image sizes beyond the the ImageDimension.

const SizeType& itk::ImageIORegion::GetSize (  )  const

Get the size of the region.

Referenced by itk::ImageIORegionAdaptor< VDimension >::Convert().

bool itk::ImageIORegion::IsInside ( const Self region  )  const

Test if a region (the argument) is completly inside of this region

bool itk::ImageIORegion::IsInside ( const IndexType index  )  const

Test if an index is inside

bool itk::ImageIORegion::operator!= ( const Self region  )  const

Compare two regions.

void itk::ImageIORegion::operator= ( const Self region  ) 

operator=. ImageIORegion is a lightweight object that is not reference counted, so operator= is public.

bool itk::ImageIORegion::operator== ( const Self region  )  const

Compare two regions.

virtual void itk::Region::Print ( std::ostream &  os,
Indent  indent = 0 
) const [virtual, inherited]

Print the region.

virtual void itk::Region::PrintHeader ( std::ostream &  os,
Indent  indent 
) const [protected, virtual, inherited]

virtual void itk::ImageIORegion::PrintSelf ( std::ostream &  os,
Indent  indent 
) const [protected, virtual]

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::Region.

virtual void itk::Region::PrintTrailer ( std::ostream &  os,
Indent  indent 
) const [protected, virtual, inherited]

void itk::ImageIORegion::SetIndex ( const unsigned long  i,
IndexValueType  idx 
)

void itk::ImageIORegion::SetIndex ( const IndexType index  ) 

Set the index defining the corner of the region.

Referenced by itk::ImageIORegionAdaptor< VDimension >::Convert().

void itk::ImageIORegion::SetSize ( const unsigned long  i,
SizeValueType  size 
)

void itk::ImageIORegion::SetSize ( const SizeType size  ) 

Set the size of the region. This plus the index determines the rectangular shape, or extent, of the region.

Referenced by itk::ImageIORegionAdaptor< VDimension >::Convert().


The documentation for this class was generated from the following file:

Generated at Thu May 28 14:55:42 2009 for ITK by doxygen 1.5.5 written by Dimitri van Heesch, © 1997-2000