#include <itkBSplineDecompositionImageFilter.h>
Inheritance diagram for itk::BSplineDecompositionImageFilter:
Public Types | |
typedef BSplineDecompositionImageFilter | Self |
typedef ImageToImageFilter< TInputImage, TOutputImage > | Superclass |
typedef SmartPointer< Self > | Pointer |
typedef SmartPointer< const Self > | ConstPointer |
typedef TOutputImage::Pointer | OutputImagePointer |
typedef TInputImage::Pointer | InputImagePointer |
typedef Superclass::InputImageType | InputImageType |
typedef itk::ImageLinearIteratorWithIndex< TInputImage > | Iterator |
enum | { ImageDimension = TInputImage::ImageDimension } |
Public Methods | |
virtual const char * | GetClassName () const |
void | SetSplineOrder (unsigned int SplineOrder) |
virtual int | GetSplineOrder () |
void | GenerateInputRequestedRegion () |
virtual void | SetInput (const TInputImage *inputData) |
virtual void | SetInput (unsigned int, const TInputImage *image) |
Static Public Methods | |
Pointer | New () |
Protected Methods | |
BSplineDecompositionImageFilter () | |
virtual | ~BSplineDecompositionImageFilter () |
void | PrintSelf (std::ostream &os, Indent indent) const |
void | GenerateData () |
void | EnlargeOutputRequestedRegion (DataObject *output) |
void | GenerateOutputInformation () |
Protected Attributes | |
std::vector< double > | m_Scratch |
TInputImage::SizeType | m_DataLength |
unsigned int | m_SplineOrder |
double | m_SplinePoles [3] |
int | m_NumberOfPoles |
double | m_Tolerance |
unsigned int | m_IteratorDirection |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 74 of file itkBSplineDecompositionImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 85 of file itkBSplineDecompositionImageFilter.h. |
|
InputImageType typedef support. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 88 of file itkBSplineDecompositionImageFilter.h. |
|
Iterator typedef support Definition at line 94 of file itkBSplineDecompositionImageFilter.h. |
|
Output and Input ImagePointer typedef support. Reimplemented from itk::ImageSource< TOutputImage >. Definition at line 84 of file itkBSplineDecompositionImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 73 of file itkBSplineDecompositionImageFilter.h. |
|
Standard class typedefs. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 71 of file itkBSplineDecompositionImageFilter.h. |
|
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. Definition at line 72 of file itkBSplineDecompositionImageFilter.h. |
|
Dimension underlying input image. Definition at line 91 of file itkBSplineDecompositionImageFilter.h. |
|
|
|
Definition at line 113 of file itkBSplineDecompositionImageFilter.h. References HardConnectedComponentImageFilter::GenerateData(), and HardConnectedComponentImageFilter::PrintSelf(). |
|
Give the process object a chance to indictate that it will produce more output than it was requested to produce. For example, many imaging filters must compute the entire output at once or can only produce output in complete slices. Such filters cannot handle smaller requested regions. These filters must provide an implementation of this method, setting the output requested region to the size they will produce. By default, a process object does not modify the size of the output requested region. Reimplemented from itk::ProcessObject. |
|
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 >. |
|
This filter requires all of the input image Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. |
|
Generate the information decribing the output data. The default implementation of this method will copy information from the input to the output. A filter may override this method if its output will have different information than its input. For instance, a filter that shrinks an image will need to provide an implementation for this method that changes the spacing of the pixels. Such filters should call their superclass' implementation of this method prior to changing the information values they need (i.e. GenerateOutputInformation() should call Superclass::GenerateOutputInformation() prior to changing the information. Reimplemented from itk::ProcessObject. |
|
Run-time type information (and related methods). Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. |
|
|
|
New macro for creation of through a Smart Pointer Reimplemented from itk::ImageToImageFilter< 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 >. |
|
Set the input image. This must be set by the user. Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >. |
|
Set the input image. This must be set by the user. |
|
Get/Sets the Spline Order, supports 0th - 5th order splines. The default is a 3rd order spline. |
|
Definition at line 149 of file itkBSplineDecompositionImageFilter.h. |
|
Definition at line 154 of file itkBSplineDecompositionImageFilter.h. |
|
Definition at line 152 of file itkBSplineDecompositionImageFilter.h. |
|
Definition at line 148 of file itkBSplineDecompositionImageFilter.h. |
|
Definition at line 150 of file itkBSplineDecompositionImageFilter.h. |
|
Definition at line 151 of file itkBSplineDecompositionImageFilter.h. |
|
Definition at line 153 of file itkBSplineDecompositionImageFilter.h. |