ITK
5.2.0
Insight Toolkit
|
#include <itkImageShapeModelEstimatorBase.h>
Private Member Functions | |
virtual void | EstimateShapeModels ()=0 |
Private Attributes | |
InputImagePointer | m_InputImage |
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 48 of file itkImageShapeModelEstimatorBase.h.
using itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::ConstPointer = SmartPointer<const Self> |
Definition at line 57 of file itkImageShapeModelEstimatorBase.h.
using itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::InputImagePointer = typename TInputImage::Pointer |
Definition at line 64 of file itkImageShapeModelEstimatorBase.h.
using itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::InputImageType = TInputImage |
Type definitions for the training image.
Definition at line 63 of file itkImageShapeModelEstimatorBase.h.
using itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::Pointer = SmartPointer<Self> |
Definition at line 56 of file itkImageShapeModelEstimatorBase.h.
using itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::Self = ImageShapeModelEstimatorBase |
Standard class type aliases.
Definition at line 54 of file itkImageShapeModelEstimatorBase.h.
using itk::ImageShapeModelEstimatorBase< TInputImage, TOutputImage >::Superclass = ImageToImageFilter<TInputImage, TOutputImage> |
Definition at line 55 of file itkImageShapeModelEstimatorBase.h.
|
protecteddefault |
|
overrideprotecteddefault |
|
privatepure virtual |
The core virtual function to perform ShapeModelling of the input data
Implemented in itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >.
|
overrideprotectedvirtual |
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 DynamicThreadedGenerateData(). 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 can be threaded, it should NOT provide a GenerateData() method but should provide a DynamicThreadedGenerateData() instead.
Reimplemented from itk::ImageSource< TOutputImage >.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::ImagePCAShapeModelEstimator< TInputImage, TOutputImage >.
|
overrideprotectedvirtual |
Typedef for the region copier function object that converts an input region to an output region.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
private |
Container for holding the training image
Definition at line 77 of file itkImageShapeModelEstimatorBase.h.