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

itk::CentralDifferenceImageFunction< TInputImage, TCoordRep > Class Template Reference
[Image Functions]

Calculate the derivative by central differencing. More...

#include <itkCentralDifferenceImageFunction.h>

List of all members.

Public Types

typedef CentralDifferenceImageFunction Self
typedef ImageFunction< TInputImage,
CovariantVector< double,
itkGetStaticConstMacro(ImageDimension)>,
TCoordRep 
Superclass )
typedef SmartPointer< SelfPointer
typedef SmartPointer< const
Self
ConstPointer
typedef TInputImage InputImageType
typedef Superclass::OutputType OutputType
typedef Superclass::IndexType IndexType
typedef Superclass::ContinuousIndexType ContinuousIndexType
typedef Superclass::PointType PointType

Public Member Functions

 itkStaticConstMacro (ImageDimension, unsigned int, TInputImage::ImageDimension)
virtual const char * GetClassName () const
virtual OutputType EvaluateAtIndex (const IndexType &index) const
virtual OutputType Evaluate (const PointType &point) const
virtual OutputType EvaluateAtContinuousIndex (const ContinuousIndexType &cindex) const

Static Public Member Functions

Pointer New ()

Protected Member Functions

 CentralDifferenceImageFunction ()
 ~CentralDifferenceImageFunction ()
void PrintSelf (std::ostream &os, Indent indent) const


Detailed Description

template<class TInputImage, class TCoordRep = float>
class itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >

Calculate the derivative by central differencing.

This class is templated over the input image type and the coordinate representation type (e.g. float or double).

Possible improvements:

Definition at line 42 of file itkCentralDifferenceImageFunction.h.


Member Typedef Documentation

template<class TInputImage, class TCoordRep = float>
typedef SmartPointer<const Self> itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::ConstPointer
 

Definition at line 59 of file itkCentralDifferenceImageFunction.h.

template<class TInputImage, class TCoordRep = float>
typedef Superclass::ContinuousIndexType itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::ContinuousIndexType
 

ContinuousIndex typedef support. Definition at line 77 of file itkCentralDifferenceImageFunction.h.

Referenced by itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::EvaluateAtContinuousIndex().

template<class TInputImage, class TCoordRep = float>
typedef Superclass::IndexType itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::IndexType
 

Index typedef support. Definition at line 74 of file itkCentralDifferenceImageFunction.h.

Referenced by itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::Evaluate(), and itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::EvaluateAtContinuousIndex().

template<class TInputImage, class TCoordRep = float>
typedef TInputImage itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::InputImageType
 

InputImageType typedef support. Definition at line 68 of file itkCentralDifferenceImageFunction.h.

template<class TInputImage, class TCoordRep = float>
typedef Superclass::OutputType itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::OutputType
 

OutputType typdef support. Definition at line 71 of file itkCentralDifferenceImageFunction.h.

template<class TInputImage, class TCoordRep = float>
typedef SmartPointer<Self> itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::Pointer
 

Definition at line 58 of file itkCentralDifferenceImageFunction.h.

template<class TInputImage, class TCoordRep = float>
typedef Superclass::PointType itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::PointType
 

Point typedef support. Definition at line 80 of file itkCentralDifferenceImageFunction.h.

template<class TInputImage, class TCoordRep = float>
typedef CentralDifferenceImageFunction itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::Self
 

Standard class typedefs. Definition at line 54 of file itkCentralDifferenceImageFunction.h.

Referenced by itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::~CentralDifferenceImageFunction().

template<class TInputImage, class TCoordRep = float>
typedef ImageFunction<TInputImage, CovariantVector<double, itkGetStaticConstMacro(ImageDimension)>, TCoordRep itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::Superclass)
 

Definition at line 57 of file itkCentralDifferenceImageFunction.h.


Constructor & Destructor Documentation

template<class TInputImage, class TCoordRep = float>
itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::CentralDifferenceImageFunction  )  [protected]
 

template<class TInputImage, class TCoordRep = float>
itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::~CentralDifferenceImageFunction  )  [inline, protected]
 

Definition at line 115 of file itkCentralDifferenceImageFunction.h.

References itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::Self.


Member Function Documentation

template<class TInputImage, class TCoordRep = float>
virtual OutputType itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::Evaluate const PointType point  )  const [inline, virtual]
 

Evalulate the image derivative by central differencing at non-integer positions.

No bounds checking is done. The point is assume to lie within the image buffer.

ImageFunction::IsInsideBuffer() can be used to check bounds before calling the method. Definition at line 98 of file itkCentralDifferenceImageFunction.h.

References itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::IndexType.

template<class TInputImage, class TCoordRep = float>
virtual OutputType itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::EvaluateAtContinuousIndex const ContinuousIndexType cindex  )  const [inline, virtual]
 

Evalulate the image derivative by central differencing at non-integer positions.

No bounds checking is done. The point is assume to lie within the image buffer.

ImageFunction::IsInsideBuffer() can be used to check bounds before calling the method. Definition at line 104 of file itkCentralDifferenceImageFunction.h.

References itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::ContinuousIndexType, and itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::IndexType.

template<class TInputImage, class TCoordRep = float>
virtual OutputType itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::EvaluateAtIndex const IndexType index  )  const [virtual]
 

Evalulate the image derivative by central differencing at specified index.

No bounds checking is done. The point is assume to lie within the image buffer.

ImageFunction::IsInsideBuffer() can be used to check bounds before calling the method.

template<class TInputImage, class TCoordRep = float>
virtual const char* itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::GetClassName  )  const [virtual]
 

Run-time type information (and related methods).

template<class TInputImage, class TCoordRep = float>
itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::itkStaticConstMacro ImageDimension  ,
unsigned  int,
TInputImage::ImageDimension 
 

Dimension underlying input image.

template<class TInputImage, class TCoordRep = float>
Pointer itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::New  )  [static]
 

Method for creation through the object factory.

template<class TInputImage, class TCoordRep = float>
void itk::CentralDifferenceImageFunction< TInputImage, TCoordRep >::PrintSelf std::ostream &  os,
Indent  indent
const [protected]
 


The documentation for this class was generated from the following file:
Generated at Sun Apr 1 02:59:36 2007 for ITK by doxygen 1.3.8 written by Dimitri van Heesch, © 1997-2000