#include <itkCurvatureFlowFunction.h>
Inheritance diagram for itk::CurvatureFlowFunction:
Public Types | |
typedef CurvatureFlowFunction | Self |
typedef FiniteDifferenceFunction< TImage > | Superclass |
typedef SmartPointer< Self > | Pointer |
typedef SmartPointer< const Self > | ConstPointer |
typedef Superclass::ImageType | ImageType |
typedef Superclass::PixelType | PixelType |
typedef Superclass::RadiusType | RadiusType |
typedef PixelType | ScalarValueType |
typedef Superclass::NeighborhoodType | NeighborhoodType |
typedef Superclass::BoundaryNeighborhoodType | BoundaryNeighborhoodType |
typedef Superclass::FloatOffsetType | FloatOffsetType |
typedef Superclass::TimeStepType | TimeStepType |
Public Methods | |
virtual const char * | GetClassName () const |
itkStaticConstMacro (ImageDimension, unsigned int, Superclass::ImageDimension) | |
virtual TimeStepType | ComputeGlobalTimeStep (void *GlobalData) const |
virtual void | ReleaseGlobalDataPointer (void *GlobalData) const |
void | SetTimeStep (const TimeStepType &t) |
const TimeStepType & | GetTimeStep () const |
virtual PixelType | ComputeUpdate (const NeighborhoodType &neighborhood, void *globalData, const FloatOffsetType &offset=m_ZeroOffset) const |
virtual PixelType | ComputeUpdate (const BoundaryNeighborhoodType &neighborhood, void *globalData, const FloatOffsetType &offset=m_ZeroOffset) const |
virtual void * | GetGlobalDataPointer () const |
Static Public Methods | |
Pointer | New () |
Protected Methods | |
CurvatureFlowFunction () | |
~CurvatureFlowFunction () |
This class uses a zero flux Neumann boundary condition when computing derivatives near the data boundary.
This class operates as part of the finite difference solver hierarchy.
Definition at line 40 of file itkCurvatureFlowFunction.h.
|
Reimplemented from itk::FiniteDifferenceFunction< TImage >. Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >, and itk::MinMaxCurvatureFlowFunction< TImage >. Definition at line 63 of file itkCurvatureFlowFunction.h. |
|
Reimplemented from itk::FiniteDifferenceFunction< TImage >. Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >, and itk::MinMaxCurvatureFlowFunction< TImage >. Definition at line 48 of file itkCurvatureFlowFunction.h. |
|
Reimplemented from itk::FiniteDifferenceFunction< TImage >. Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >, and itk::MinMaxCurvatureFlowFunction< TImage >. Definition at line 64 of file itkCurvatureFlowFunction.h. |
|
Inherit some parameters from the superclass type. Reimplemented from itk::FiniteDifferenceFunction< TImage >. Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >, and itk::MinMaxCurvatureFlowFunction< TImage >. Definition at line 58 of file itkCurvatureFlowFunction.h. |
|
Reimplemented from itk::FiniteDifferenceFunction< TImage >. Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >, and itk::MinMaxCurvatureFlowFunction< TImage >. Definition at line 62 of file itkCurvatureFlowFunction.h. |
|
Reimplemented from itk::FiniteDifferenceFunction< TImage >. Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >, and itk::MinMaxCurvatureFlowFunction< TImage >. Definition at line 59 of file itkCurvatureFlowFunction.h. |
|
Reimplemented from itk::FiniteDifferenceFunction< TImage >. Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >, and itk::MinMaxCurvatureFlowFunction< TImage >. Definition at line 47 of file itkCurvatureFlowFunction.h. |
|
Reimplemented from itk::FiniteDifferenceFunction< TImage >. Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >, and itk::MinMaxCurvatureFlowFunction< TImage >. Definition at line 60 of file itkCurvatureFlowFunction.h. |
|
Definition at line 61 of file itkCurvatureFlowFunction.h. |
|
Standard class typedefs. Reimplemented from itk::FiniteDifferenceFunction< TImage >. Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >, and itk::MinMaxCurvatureFlowFunction< TImage >. Definition at line 45 of file itkCurvatureFlowFunction.h. |
|
Reimplemented from itk::FiniteDifferenceFunction< TImage >. Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >, and itk::MinMaxCurvatureFlowFunction< TImage >. Definition at line 46 of file itkCurvatureFlowFunction.h. |
|
Reimplemented from itk::FiniteDifferenceFunction< TImage >. Definition at line 65 of file itkCurvatureFlowFunction.h. Referenced by itk::CurvatureFlowFunction< TImage >::~CurvatureFlowFunction(). |
|
|
|
Definition at line 141 of file itkCurvatureFlowFunction.h. References itk::CurvatureFlowFunction< TImage >::TimeStepType. |
|
Computes the time step for an update given a global data structure. The data used in the computation may take different forms depending on the nature of the equations. This global data cannot be kept in the instance of the equation object itself since the equation object must remain stateless for thread safety. The global data is therefore managed for each thread by the finite difference solver filters. Currently, this function returns the user specified constant time step.
Implements itk::FiniteDifferenceFunction< TImage >. |
|
This method computes the solution update for each pixel that lies on the data set boundary. Implements itk::FiniteDifferenceFunction< TImage >. Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >, and itk::MinMaxCurvatureFlowFunction< TImage >. |
|
This method computes the solution update for each pixel that does not lie on a the data set boundary. Implements itk::FiniteDifferenceFunction< TImage >. Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >, and itk::MinMaxCurvatureFlowFunction< TImage >. |
|
Run-time type information (and related methods) Reimplemented from itk::FiniteDifferenceFunction< TImage >. Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >, and itk::MinMaxCurvatureFlowFunction< TImage >. |
|
Returns a pointer to a global data structure that is passed to this object from the solver at each calculation. The idea is that the solver holds the state of any global values needed to calculate the time step, while the equation object performs the actual calculations. The global data should also be initialized in this method. Implements itk::FiniteDifferenceFunction< TImage >. Definition at line 87 of file itkCurvatureFlowFunction.h. References itk::CurvatureFlowFunction< TImage >::GlobalDataStruct::m_MaxChange. |
|
Get the time step parameter Definition at line 107 of file itkCurvatureFlowFunction.h. |
|
Extract superclass dimension. Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >, and itk::MinMaxCurvatureFlowFunction< TImage >. |
|
Method for creation through the object factory. Reimplemented from itk::LightObject. Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >, and itk::MinMaxCurvatureFlowFunction< TImage >. |
|
When the finite difference solver filter has finished using a global data pointer, it passes it to this method, which frees the memory. The solver cannot free the memory because it does not know the type to which the pointer points. Implements itk::FiniteDifferenceFunction< TImage >. Definition at line 99 of file itkCurvatureFlowFunction.h. |
|
Set the time step parameter Definition at line 103 of file itkCurvatureFlowFunction.h. |