ITK
4.3.0
Insight Segmentation and Registration Toolkit
|
#include <itkImageShapeModelEstimatorBase.h>
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 49 of file itkImageShapeModelEstimatorBase.h.
Private Member Functions | |
virtual void | EstimateShapeModels ()=0 |
ImageShapeModelEstimatorBase (const Self &) | |
void | operator= (const Self &) |
Private Attributes | |
InputImagePointer | m_InputImage |
typedef SmartPointer< const Self > itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::ConstPointer |
Definition at line 57 of file itkImageShapeModelEstimatorBase.h.
typedef TInputImage::Pointer itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::InputImagePointer |
Definition at line 64 of file itkImageShapeModelEstimatorBase.h.
typedef TInputImage itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::InputImageType |
Type definitions for the training image.
Definition at line 60 of file itkImageShapeModelEstimatorBase.h.
typedef SmartPointer< Self > itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::Pointer |
Definition at line 56 of file itkImageShapeModelEstimatorBase.h.
typedef ImageShapeModelEstimatorBase itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::Self |
Standard class typedefs.
Definition at line 54 of file itkImageShapeModelEstimatorBase.h.
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::Superclass |
Definition at line 55 of file itkImageShapeModelEstimatorBase.h.
|
protected |
|
protected |
|
private |
|
privatepure virtual |
The core virtual function to perform ShapeModelling of the input data
Implemented in itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >.
|
protectedvirtual |
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.
Reimplemented from itk::ImageSource< TOutputImage >.
Reimplemented in itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >.
|
private |
|
protectedvirtual |
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 >.
|
private |
Container for holding the training image
Definition at line 79 of file itkImageShapeModelEstimatorBase.h.