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

itk::RegionGrowImageFilter< TInputImage, TOutputImage > Class Template Reference
[Region Growing Filters]

Base class for RegionGrowImageFilter object. More...

#include <itkRegionGrowImageFilter.h>

Inheritance diagram for itk::RegionGrowImageFilter< TInputImage, TOutputImage >:

Inheritance graph
[legend]
Collaboration diagram for itk::RegionGrowImageFilter< TInputImage, TOutputImage >:

Collaboration graph
[legend]
List of all members.

Public Types

typedef RegionGrowImageFilter Self
typedef Object Superclass
typedef SmartPointer< SelfPointer
typedef SmartPointer< const
Self
ConstPointer
typedef TInputImage InputImageType
typedef TInputImage::Pointer InputImagePointer
typedef TInputImage::ConstPointer InputImageConstPointer
typedef TInputImage::PixelType InputImagePixelType
typedef TOutputImage OutputImageType
typedef TOutputImage::Pointer OutputImagePointer
typedef TOutputImage::PixelType OutputImagePixelType

Public Member Functions

virtual const char * GetClassName () const
virtual void ApplyRegionGrowImageFilter ()
virtual void MergeRegions ()
virtual void SetMaximumNumberOfRegions (unsigned int _arg)
virtual unsigned int GetMaximumNumberOfRegions ()
virtual void SetRowGridSize (unsigned int _arg)
virtual unsigned int GetRowGridSize ()
virtual void SetColGridSize (unsigned int _arg)
virtual unsigned int GetColGridSize ()
virtual void SetSliceGridSize (unsigned int _arg)
virtual unsigned int GetSliceGridSize ()

Static Public Member Functions

Pointer New ()

Protected Member Functions

 RegionGrowImageFilter ()
 ~RegionGrowImageFilter ()
void PrintSelf (std::ostream &os, Indent indent) const

Detailed Description

template<class TInputImage, class TOutputImage>
class itk::RegionGrowImageFilter< TInputImage, TOutputImage >

Base class for RegionGrowImageFilter object.

itkRegionGrowImageFilter is the base class for the RegionGrowImageFilter objects. It provides the basic function definitons that are inherent to a RegionGrowImageFilter objects. It is templated over the type of input and output image.

This object defines the interface for those algorithm that perform feture/object segmentation by merging regions (parts of the image) that are similar in nature based on some metric. As a result parts of the image which belong to the same object gets merged and the region grows.

As an example regarding using this class to implementation of advanced region growing algorithm, itkRegionGrowImageFilterKLM class has been derived from this class. The virtual function ApplyRegionGrowImageFilter() provides the interface to the outside world to extend/enhance the scope of the current algorithm or write other region growing algorithms. The function MergeRegions is interface for the operation that merges two regions.

The local variables m_RowGridSize and m_ColGridSize are used to define the inital small regions that the image is fragmented (atomic regions). For an 12 x 12 input image, m_RowGridSize and m_ColGridSize when set equal to 3 will result in 16 initial regions. The default value is set equal to 2. The user can sets the number of desired regions via the m_MaxNumRegions parameter and the algorithm tries to perform region merging until there are only m_MaxNumRegions. If m_MaxNumRegions is more than the number of initial blocks, no region merging occurs.

These blocks are important as the labels associated with these blocks keep changing during the region growing process and at the end, while generating the results, each of these atomic blocks are revisited and the blocks with same labels are considered to belong to the same region.

This object supports data handling of multiband images. The object accepts images in vector format, where each pixel is a vector and each element of the vector corresponds to an entry from 1 particular band of a multiband dataset. The input to this object is assumed to be a multiband vector image, and the output is defined by specific algorithm implementation. The second template parameter is used to generate the the output image and can be modified according the algorithm specific output type.

We expect the user to provide the input to the routine in vector format. A single band image is treated as a vector image with a single element for every vector.

Definition at line 76 of file itkRegionGrowImageFilter.h.


Member Typedef Documentation

template<class TInputImage, class TOutputImage>
typedef SmartPointer<const Self> itk::RegionGrowImageFilter< TInputImage, TOutputImage >::ConstPointer
 

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Reimplemented in itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >.

Definition at line 84 of file itkRegionGrowImageFilter.h.

template<class TInputImage, class TOutputImage>
typedef TInputImage::ConstPointer itk::RegionGrowImageFilter< TInputImage, TOutputImage >::InputImageConstPointer
 

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Reimplemented in itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >.

Definition at line 95 of file itkRegionGrowImageFilter.h.

template<class TInputImage, class TOutputImage>
typedef TInputImage::PixelType itk::RegionGrowImageFilter< TInputImage, TOutputImage >::InputImagePixelType
 

Type definition for the input image pixel type.

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Reimplemented in itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >.

Definition at line 98 of file itkRegionGrowImageFilter.h.

template<class TInputImage, class TOutputImage>
typedef TInputImage::Pointer itk::RegionGrowImageFilter< TInputImage, TOutputImage >::InputImagePointer
 

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Reimplemented in itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >.

Definition at line 94 of file itkRegionGrowImageFilter.h.

template<class TInputImage, class TOutputImage>
typedef TInputImage itk::RegionGrowImageFilter< TInputImage, TOutputImage >::InputImageType
 

Type definition for the input image.

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Reimplemented in itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >.

Definition at line 93 of file itkRegionGrowImageFilter.h.

template<class TInputImage, class TOutputImage>
typedef TOutputImage::PixelType itk::RegionGrowImageFilter< TInputImage, TOutputImage >::OutputImagePixelType
 

Type definition for the input image pixel type.

Reimplemented from itk::ImageSource< TOutputImage >.

Reimplemented in itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >.

Definition at line 105 of file itkRegionGrowImageFilter.h.

template<class TInputImage, class TOutputImage>
typedef TOutputImage::Pointer itk::RegionGrowImageFilter< TInputImage, TOutputImage >::OutputImagePointer
 

Reimplemented from itk::ImageSource< TOutputImage >.

Reimplemented in itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >.

Definition at line 102 of file itkRegionGrowImageFilter.h.

template<class TInputImage, class TOutputImage>
typedef TOutputImage itk::RegionGrowImageFilter< TInputImage, TOutputImage >::OutputImageType
 

Type definition for the output image.

Reimplemented from itk::ImageSource< TOutputImage >.

Reimplemented in itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >.

Definition at line 101 of file itkRegionGrowImageFilter.h.

template<class TInputImage, class TOutputImage>
typedef SmartPointer<Self> itk::RegionGrowImageFilter< TInputImage, TOutputImage >::Pointer
 

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Reimplemented in itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >.

Definition at line 83 of file itkRegionGrowImageFilter.h.

template<class TInputImage, class TOutputImage>
typedef RegionGrowImageFilter itk::RegionGrowImageFilter< TInputImage, TOutputImage >::Self
 

Standard class typedefs.

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Reimplemented in itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >.

Definition at line 81 of file itkRegionGrowImageFilter.h.

Referenced by itk::RegionGrowImageFilter< TInputImage, TOutputImage >::MergeRegions().

template<class TInputImage, class TOutputImage>
typedef Object itk::RegionGrowImageFilter< TInputImage, TOutputImage >::Superclass
 

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Reimplemented in itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >.

Definition at line 82 of file itkRegionGrowImageFilter.h.


Constructor & Destructor Documentation

template<class TInputImage, class TOutputImage>
itk::RegionGrowImageFilter< TInputImage, TOutputImage >::RegionGrowImageFilter  )  [protected]
 

template<class TInputImage, class TOutputImage>
itk::RegionGrowImageFilter< TInputImage, TOutputImage >::~RegionGrowImageFilter  )  [protected]
 


Member Function Documentation

template<class TInputImage, class TOutputImage>
virtual void itk::RegionGrowImageFilter< TInputImage, TOutputImage >::ApplyRegionGrowImageFilter  )  [inline, virtual]
 

Define a virtual RegionGrowImageFilter function.

Reimplemented in itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >.

Definition at line 128 of file itkRegionGrowImageFilter.h.

template<class TInputImage, class TOutputImage>
virtual const char* itk::RegionGrowImageFilter< TInputImage, TOutputImage >::GetClassName  )  const [virtual]
 

Run-time type information (and related methods).

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Reimplemented in itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >.

template<class TInputImage, class TOutputImage>
virtual unsigned int itk::RegionGrowImageFilter< TInputImage, TOutputImage >::GetColGridSize  )  [virtual]
 

Set/Get the column grid size of the initial regions in the image.

template<class TInputImage, class TOutputImage>
virtual unsigned int itk::RegionGrowImageFilter< TInputImage, TOutputImage >::GetMaximumNumberOfRegions  )  [virtual]
 

Set/Get the number of regions desired.

template<class TInputImage, class TOutputImage>
virtual unsigned int itk::RegionGrowImageFilter< TInputImage, TOutputImage >::GetRowGridSize  )  [virtual]
 

Set/Get the row grid size of the initial regions in the image.

template<class TInputImage, class TOutputImage>
virtual unsigned int itk::RegionGrowImageFilter< TInputImage, TOutputImage >::GetSliceGridSize  )  [virtual]
 

Set/Get the column grid size of the initial regions in the image.

template<class TInputImage, class TOutputImage>
virtual void itk::RegionGrowImageFilter< TInputImage, TOutputImage >::MergeRegions  )  [inline, virtual]
 

Merge two regions.

Reimplemented in itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >.

Definition at line 131 of file itkRegionGrowImageFilter.h.

References itk::RegionGrowImageFilter< TInputImage, TOutputImage >::Self.

template<class TInputImage, class TOutputImage>
Pointer itk::RegionGrowImageFilter< TInputImage, TOutputImage >::New  )  [static]
 

Method for creation through the object factory.

Reimplemented from itk::Object.

Reimplemented in itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >.

template<class TInputImage, class TOutputImage>
void itk::RegionGrowImageFilter< TInputImage, TOutputImage >::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::ImageToImageFilter< TInputImage, TOutputImage >.

Reimplemented in itk::KLMRegionGrowImageFilter< TInputImage, TOutputImage >.

template<class TInputImage, class TOutputImage>
virtual void itk::RegionGrowImageFilter< TInputImage, TOutputImage >::SetColGridSize unsigned int  _arg  )  [virtual]
 

Set/Get the column grid size of the initial regions in the image.

template<class TInputImage, class TOutputImage>
virtual void itk::RegionGrowImageFilter< TInputImage, TOutputImage >::SetMaximumNumberOfRegions unsigned int  _arg  )  [virtual]
 

Set/Get the number of regions desired.

template<class TInputImage, class TOutputImage>
virtual void itk::RegionGrowImageFilter< TInputImage, TOutputImage >::SetRowGridSize unsigned int  _arg  )  [virtual]
 

Set/Get the row grid size of the initial regions in the image.

template<class TInputImage, class TOutputImage>
virtual void itk::RegionGrowImageFilter< TInputImage, TOutputImage >::SetSliceGridSize unsigned int  _arg  )  [virtual]
 

Set/Get the column grid size of the initial regions in the image.


The documentation for this class was generated from the following file:
Generated at Sun Apr 1 02:51:22 2007 for ITK by doxygen 1.3.8 written by Dimitri van Heesch, © 1997-2000