Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage > Class Template Reference

#include <itkBSplineDecompositionImageFilter.h>

Inheritance diagram for itk::BSplineDecompositionImageFilter:

Inheritance graph
[legend]
Collaboration diagram for itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >:

Collaboration graph
[legend]
List of all members.

Public Types

typedef BSplineDecompositionImageFilter Self
typedef ImageToImageFilter<
TInputImage, TOutputImage > 
Superclass
typedef SmartPointer< SelfPointer
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

template<class TInputImage, class TOutputImage>
class itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >


Member Typedef Documentation

template<class TInputImage, class TOutputImage>
typedef SmartPointer<const Self> itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::ConstPointer
 

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 74 of file itkBSplineDecompositionImageFilter.h.

template<class TInputImage, class TOutputImage>
typedef TInputImage::Pointer itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::InputImagePointer
 

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 85 of file itkBSplineDecompositionImageFilter.h.

template<class TInputImage, class TOutputImage>
typedef Superclass::InputImageType itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::InputImageType
 

InputImageType typedef support.

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 88 of file itkBSplineDecompositionImageFilter.h.

template<class TInputImage, class TOutputImage>
typedef itk::ImageLinearIteratorWithIndex<TInputImage> itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::Iterator
 

Iterator typedef support

Definition at line 94 of file itkBSplineDecompositionImageFilter.h.

template<class TInputImage, class TOutputImage>
typedef TOutputImage::Pointer itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::OutputImagePointer
 

Output and Input ImagePointer typedef support.

Reimplemented from itk::ImageSource< TOutputImage >.

Definition at line 84 of file itkBSplineDecompositionImageFilter.h.

template<class TInputImage, class TOutputImage>
typedef SmartPointer<Self> itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::Pointer
 

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 73 of file itkBSplineDecompositionImageFilter.h.

template<class TInputImage, class TOutputImage>
typedef BSplineDecompositionImageFilter itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::Self
 

Standard class typedefs.

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 71 of file itkBSplineDecompositionImageFilter.h.

template<class TInputImage, class TOutputImage>
typedef ImageToImageFilter<TInputImage,TOutputImage> itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::Superclass
 

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 72 of file itkBSplineDecompositionImageFilter.h.


Member Enumeration Documentation

template<class TInputImage, class TOutputImage>
anonymous enum
 

Dimension underlying input image.

Enumeration values:
ImageDimension 

Definition at line 91 of file itkBSplineDecompositionImageFilter.h.


Constructor & Destructor Documentation

template<class TInputImage, class TOutputImage>
itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::BSplineDecompositionImageFilter   [protected]
 

template<class TInputImage, class TOutputImage>
virtual itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::~BSplineDecompositionImageFilter   [inline, protected, virtual]
 

Definition at line 113 of file itkBSplineDecompositionImageFilter.h.

References HardConnectedComponentImageFilter::GenerateData(), and HardConnectedComponentImageFilter::PrintSelf().


Member Function Documentation

template<class TInputImage, class TOutputImage>
void itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::EnlargeOutputRequestedRegion DataObject   output [protected, virtual]
 

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.

template<class TInputImage, class TOutputImage>
void itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::GenerateData   [protected, virtual]
 

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.

See also:
ThreadedGenerateData()

Reimplemented from itk::ImageSource< TOutputImage >.

template<class TInputImage, class TOutputImage>
void itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::GenerateInputRequestedRegion   [virtual]
 

This filter requires all of the input image

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

template<class TInputImage, class TOutputImage>
void itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::GenerateOutputInformation   [protected, virtual]
 

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.

template<class TInputImage, class TOutputImage>
virtual const char* itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::GetClassName   const [virtual]
 

Run-time type information (and related methods).

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

template<class TInputImage, class TOutputImage>
virtual int itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::GetSplineOrder   [virtual]
 

template<class TInputImage, class TOutputImage>
Pointer itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::New   [static]
 

New macro for creation of through a Smart Pointer

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

template<class TInputImage, class TOutputImage>
void itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::PrintSelf std::ostream &    os,
Indent    indent
const [protected, virtual]
 

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 >.

template<class TInputImage, class TOutputImage>
virtual void itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::SetInput unsigned    int,
const TInputImage *    image
[virtual]
 

Set the input image. This must be set by the user.

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

template<class TInputImage, class TOutputImage>
virtual void itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::SetInput const TInputImage *    inputData [virtual]
 

Set the input image. This must be set by the user.

template<class TInputImage, class TOutputImage>
void itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::SetSplineOrder unsigned int    SplineOrder
 

Get/Sets the Spline Order, supports 0th - 5th order splines. The default is a 3rd order spline.


Member Data Documentation

template<class TInputImage, class TOutputImage>
TInputImage::SizeType itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::m_DataLength [protected]
 

Definition at line 149 of file itkBSplineDecompositionImageFilter.h.

template<class TInputImage, class TOutputImage>
unsigned int itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::m_IteratorDirection [protected]
 

Definition at line 154 of file itkBSplineDecompositionImageFilter.h.

template<class TInputImage, class TOutputImage>
int itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::m_NumberOfPoles [protected]
 

Definition at line 152 of file itkBSplineDecompositionImageFilter.h.

template<class TInputImage, class TOutputImage>
std::vector<double> itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::m_Scratch [protected]
 

Definition at line 148 of file itkBSplineDecompositionImageFilter.h.

template<class TInputImage, class TOutputImage>
unsigned int itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::m_SplineOrder [protected]
 

Definition at line 150 of file itkBSplineDecompositionImageFilter.h.

template<class TInputImage, class TOutputImage>
double itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::m_SplinePoles[3] [protected]
 

Definition at line 151 of file itkBSplineDecompositionImageFilter.h.

template<class TInputImage, class TOutputImage>
double itk::BSplineDecompositionImageFilter< TInputImage, TOutputImage >::m_Tolerance [protected]
 

Definition at line 153 of file itkBSplineDecompositionImageFilter.h.


The documentation for this class was generated from the following file:
Generated at Wed Mar 12 01:14:50 2003 for ITK by doxygen 1.2.15 written by Dimitri van Heesch, © 1997-2000