#include <itkImageShapeModelEstimatorBase.h>
Inheritance diagram for itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >:
Public Types | |
typedef ImageShapeModelEstimatorBase | Self |
typedef ImageToImageFilter< TInputImage, TOutputImage > | Superclass |
typedef SmartPointer< Self > | Pointer |
typedef SmartPointer< const Self > | ConstPointer |
typedef TInputImage | InputImageType |
typedef TInputImage::Pointer | InputImagePointer |
Public Member Functions | |
virtual const char * | GetNameOfClass () const |
Protected Member Functions | |
ImageShapeModelEstimatorBase () | |
~ImageShapeModelEstimatorBase () | |
void | PrintSelf (std::ostream &os, Indent indent) const |
virtual void | GenerateData () |
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.
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >. Definition at line 55 of file itkImageShapeModelEstimatorBase.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >. Definition at line 63 of file itkImageShapeModelEstimatorBase.h. |
|
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. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >. Definition at line 54 of file itkImageShapeModelEstimatorBase.h. |
|
Standard class typedefs. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >. Definition at line 52 of file itkImageShapeModelEstimatorBase.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >. Definition at line 53 of file itkImageShapeModelEstimatorBase.h. |
|
|
|
|
|
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 >. |
|
Run-time type information (and related methods). Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >. |
|
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 >. |