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

itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage > Class Template Reference
[Image Feature Extraction Filters]

Base class for statistical shape model estimation. More...

#include <itkImageShapeModelEstimatorBase.h>

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

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

Collaboration graph
[legend]
List of all members.

Public Types

typedef ImageShapeModelEstimatorBase Self
typedef ImageToImageFilter<
TInputImage, TOutputImage > 
Superclass
typedef SmartPointer< SelfPointer
typedef SmartPointer< const
Self
ConstPointer
typedef TInputImage InputImageType
typedef TInputImage::Pointer InputImagePointer

Public Member Functions

virtual const char * GetClassName () const

Protected Member Functions

 ImageShapeModelEstimatorBase ()
 ~ImageShapeModelEstimatorBase ()
void PrintSelf (std::ostream &os, Indent indent) const
virtual void GenerateData ()

Detailed Description

template<class TInputImage, class TOutputImage = Image<double, ::itk::GetImageDimension<TInputImage>::ImageDimension>>
class itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >

Base class for statistical shape model estimation.

itkImageShapeModelEstimatorBase is the base class for the ImageShapeModelEstimator objects. It provides the basic function definitions that are inherent to a ImageShapeModelEstimator objects.

This is the SuperClass for the ImageShapeModelEstimator framework. This is an abstract class defining an interface for all such objects available through the ImageShapeModelEstimator framework in the ITK toolkit.

The basic functionality of the ImageShapeModelEstimator framework base class is to generate the ShapeModels. It requires input image to be provided by the user.

EstimateShapeModels() is a pure virtual function making this an abstract class. Classes deriving from this class are required to implement the EstimateShapeModels function.

Definition at line 47 of file itkImageShapeModelEstimatorBase.h.


Member Typedef Documentation

template<class TInputImage, class TOutputImage = Image<double, ::itk::GetImageDimension<TInputImage>::ImageDimension>>
typedef SmartPointer<const Self> itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::ConstPointer
 

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

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

Definition at line 55 of file itkImageShapeModelEstimatorBase.h.

template<class TInputImage, class TOutputImage = Image<double, ::itk::GetImageDimension<TInputImage>::ImageDimension>>
typedef TInputImage::Pointer itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::InputImagePointer
 

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

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

Definition at line 63 of file itkImageShapeModelEstimatorBase.h.

template<class TInputImage, class TOutputImage = Image<double, ::itk::GetImageDimension<TInputImage>::ImageDimension>>
typedef TInputImage itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::InputImageType
 

Type definitions for the training image.

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

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

Definition at line 62 of file itkImageShapeModelEstimatorBase.h.

template<class TInputImage, class TOutputImage = Image<double, ::itk::GetImageDimension<TInputImage>::ImageDimension>>
typedef SmartPointer<Self> itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::Pointer
 

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

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

Definition at line 54 of file itkImageShapeModelEstimatorBase.h.

template<class TInputImage, class TOutputImage = Image<double, ::itk::GetImageDimension<TInputImage>::ImageDimension>>
typedef ImageShapeModelEstimatorBase itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::Self
 

Standard class typedefs.

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

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

Definition at line 52 of file itkImageShapeModelEstimatorBase.h.

template<class TInputImage, class TOutputImage = Image<double, ::itk::GetImageDimension<TInputImage>::ImageDimension>>
typedef ImageToImageFilter<TInputImage, TOutputImage> itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::Superclass
 

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

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

Definition at line 53 of file itkImageShapeModelEstimatorBase.h.


Constructor & Destructor Documentation

template<class TInputImage, class TOutputImage = Image<double, ::itk::GetImageDimension<TInputImage>::ImageDimension>>
itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::ImageShapeModelEstimatorBase  )  [protected]
 

template<class TInputImage, class TOutputImage = Image<double, ::itk::GetImageDimension<TInputImage>::ImageDimension>>
itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::~ImageShapeModelEstimatorBase  )  [protected]
 


Member Function Documentation

template<class TInputImage, class TOutputImage = Image<double, ::itk::GetImageDimension<TInputImage>::ImageDimension>>
virtual void itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::GenerateData  )  [protected, virtual]
 

A version of GenerateData() specific for image processing filters. This implementation will split the processing across multiple threads. The buffer is allocated by this method. Then the BeforeThreadedGenerateData() method is called (if provided). Then, a series of threads are spawned each calling ThreadedGenerateData(). After all the threads have completed processing, the AfterThreadedGenerateData() method is called (if provided). If an image processing filter cannot be threaded, the filter should provide an implementation of GenerateData(). That implementation is responsible for allocating the output buffer. If a filter an be threaded, it should NOT provide a GenerateData() method but should provide a ThreadedGenerateData() instead.

See also:
ThreadedGenerateData()

Reimplemented from itk::ImageSource< TOutputImage >.

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

template<class TInputImage, class TOutputImage = Image<double, ::itk::GetImageDimension<TInputImage>::ImageDimension>>
virtual const char* itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::GetClassName  )  const [virtual]
 

Run-time type information (and related methods).

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

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

template<class TInputImage, class TOutputImage = Image<double, ::itk::GetImageDimension<TInputImage>::ImageDimension>>
void itk::ImageShapeModelEstimatorBase< 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::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >.


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