itk::Region Class Reference
[Data Representation Objects]

A region represents some portion or piece of data. More...

#include <itkRegion.h>

Inheritance diagram for itk::Region:

Inheritance graph
[legend]

List of all members.

Public Types

enum  RegionType { ITK_UNSTRUCTURED_REGION, ITK_STRUCTURED_REGION }
typedef Region Self

Public Member Functions

virtual const char * GetNameOfClass () const
virtual RegionType GetRegionType () const =0
virtual void Print (std::ostream &os, Indent indent=0) const

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


Detailed Description

A region represents some portion or piece of data.

Region is an abstract class that represents some portion or piece of a DataObject. A region is used by the pipeline when processing just a portion of the data, either because 1) memory limits dictate that the pipeline cannot fit the entire dataset into memory; 2) the user has requested that only a piece of the dataset is to be processed; or 3) parallel (multi-threaded) processing of the data is required.

There are two types of regions in itk: a structured region that specifies a rectangular piece of an image (ImageRegion), and a unstructured region that specifies piece i of N total pieces (MeshRegion). Depending on the filter (its input and output types, and its position in the pipeline), ImageRegion or MeshRegion will be used to describe the region.

Region is a light-weight object and not reference counted. This means that is behaves differently than ITK classes that are reference counted. For example, smart pointer access is not provided, and the (subclasses') constructor, destructor, copy constructor and operator= are all public.

See also:
ImageRegion

MeshRegion

Definition at line 56 of file itkRegion.h.


Member Typedef Documentation


Member Enumeration Documentation

Enums used to describe the extent types.

Reimplemented in itk::ImageIORegion.

Definition at line 63 of file itkRegion.h.

00063 {ITK_UNSTRUCTURED_REGION,ITK_STRUCTURED_REGION};


Member Function Documentation

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

virtual RegionType itk::Region::GetRegionType (  )  const [pure virtual]

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

Print the region.

Definition at line 27 of file itkRegion.cxx.

References itk::Indent::GetNextIndent().

Referenced by itk::ImageIOBase::PrintSelf().

00028 {
00029   this->PrintHeader(os,indent); 
00030   this->PrintSelf(os, indent.GetNextIndent());
00031   this->PrintTrailer(os,indent);
00032 }  

void itk::Region::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 in otb::RemoteSensingRegion< TType >, itk::ImageRegion< VImageDimension >, itk::ImageIORegion, otb::RemoteSensingRegion< double >, otb::RemoteSensingRegion< VertexType::CoordRepType >, itk::ImageRegion< 2 >, itk::ImageRegion< itkGetStaticConstMacro(SpaceDimension)>, itk::ImageRegion< TDimension >, and itk::ImageRegion< OutputImageType::ImageDimension >.

Definition at line 49 of file itkRegion.cxx.

00050 {
00051 }


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

Generated at Wed Jul 14 07:43:15 2010 for OTB with doxygen 1.5.6