ITK
4.2.0
Insight Segmentation and Registration Toolkit
|
#include <itkImageShapeModelEstimatorBase.h>
Private Member Functions | |
virtual void | EstimateShapeModels ()=0 |
ImageShapeModelEstimatorBase (const Self &) | |
void | operator= (const Self &) |
Private Attributes | |
InputImagePointer | m_InputImage |
typedef TInputImage | InputImageType |
typedef TInputImage::Pointer | InputImagePointer |
ImageShapeModelEstimatorBase () | |
~ImageShapeModelEstimatorBase () | |
void | PrintSelf (std::ostream &os, Indent indent) const |
Additional Inherited Members | |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
static const unsigned int | InputImageDimension = TInputImage::ImageDimension |
static const unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageSource< TOutputImage > | |
Protected Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(OutputImageDimension), itkGetStaticConstMacro(InputImageDimension) > | InputToOutputRegionCopierType |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(InputImageDimension), itkGetStaticConstMacro(OutputImageDimension) > | OutputToInputRegionCopierType |
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.
typedef SmartPointer< const Self > itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::ConstPointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >.
Definition at line 57 of file itkImageShapeModelEstimatorBase.h.
typedef TInputImage::Pointer itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::InputImagePointer |
Type definitions for the training image.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >.
Definition at line 64 of file itkImageShapeModelEstimatorBase.h.
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 60 of file itkImageShapeModelEstimatorBase.h.
typedef SmartPointer< Self > itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::Pointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >.
Definition at line 56 of file itkImageShapeModelEstimatorBase.h.
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 54 of file itkImageShapeModelEstimatorBase.h.
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::Superclass |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >.
Definition at line 55 of file itkImageShapeModelEstimatorBase.h.
|
protected |
Type definitions for the training image.
|
protected |
Type definitions for the training image.
|
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 |
PushBackInput(), PushFronInput() in the public section force the input to be the type expected by an ImageToImageFilter. However, these methods end of "hiding" the versions from the superclass (ProcessObject) whose arguments are DataObjects. Here, we re-expose the versions from ProcessObject to avoid warnings about hiding methods from the superclass.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >.
|
protectedvirtual |
Type definitions for the training image.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >.
|
private |
Container for holding the training image
Definition at line 79 of file itkImageShapeModelEstimatorBase.h.