ITK
4.2.0
Insight Segmentation and Registration Toolkit
|
#include <itkMinMaxCurvatureFlowFunction.h>
Classes | |
struct | Dispatch |
struct | DispatchBase |
Public Types | |
typedef SmartPointer< const Self > | ConstPointer |
typedef Superclass::FloatOffsetType | FloatOffsetType |
typedef Superclass::ImageType | ImageType |
typedef Superclass::NeighborhoodType | NeighborhoodType |
typedef Superclass::PixelType | PixelType |
typedef SmartPointer< Self > | Pointer |
typedef Superclass::RadiusType | RadiusType |
typedef RadiusType::SizeValueType | RadiusValueType |
typedef MinMaxCurvatureFlowFunction | Self |
typedef CurvatureFlowFunction < TImage > | Superclass |
Public Types inherited from itk::CurvatureFlowFunction< TImage > | |
typedef Superclass::NeighborhoodScalesType | NeighborhoodScalesType |
typedef Superclass::PixelRealType | PixelRealType |
typedef PixelType | ScalarValueType |
typedef Superclass::TimeStepType | TimeStepType |
Public Types inherited from itk::FiniteDifferenceFunction< TImage > | |
typedef ZeroFluxNeumannBoundaryCondition < ImageType > | DefaultBoundaryConditionType |
Public Types inherited from itk::LightObject |
Public Member Functions | |
virtual PixelType | ComputeUpdate (const NeighborhoodType &neighborhood, void *globalData, const FloatOffsetType &offset=FloatOffsetType(0.0)) |
virtual ::itk::LightObject::Pointer | CreateAnother (void) const |
virtual const char * | GetNameOfClass () const |
const RadiusValueType & | GetRadiusValueType () const |
void | SetStencilRadius (const RadiusValueType radius) |
Public Member Functions inherited from itk::CurvatureFlowFunction< TImage > | |
virtual TimeStepType | ComputeGlobalTimeStep (void *GlobalData) const |
virtual void * | GetGlobalDataPointer () const |
const TimeStepType & | GetTimeStep () const |
virtual void | ReleaseGlobalDataPointer (void *GlobalData) const |
void | SetTimeStep (const TimeStepType &t) |
Public Member Functions inherited from itk::FiniteDifferenceFunction< TImage > | |
const NeighborhoodScalesType | ComputeNeighborhoodScales () const |
const RadiusType & | GetRadius () const |
virtual void | InitializeIteration () |
void | SetRadius (const RadiusType &r) |
void | SetScaleCoefficients (PixelRealType vals[ImageDimension]) |
Public Member Functions inherited from itk::LightObject | |
virtual void | Delete () |
virtual int | GetReferenceCount () const |
itkCloneMacro (Self) | |
void | Print (std::ostream &os, Indent indent=0) const |
virtual void | Register () const |
virtual void | SetReferenceCount (int) |
virtual void | UnRegister () const |
Static Public Member Functions | |
static Pointer | New () |
Static Public Attributes | |
static const unsigned int | ImageDimension = Superclass::ImageDimension |
Static Public Attributes inherited from itk::CurvatureFlowFunction< TImage > | |
Static Public Attributes inherited from itk::FiniteDifferenceFunction< TImage > |
Protected Types | |
typedef Neighborhood < PixelType, itkGetStaticConstMacro(ImageDimension) > | StencilOperatorType |
Protected Member Functions | |
void | InitializeStencilOperator () |
MinMaxCurvatureFlowFunction () | |
~MinMaxCurvatureFlowFunction () | |
Protected Member Functions inherited from itk::CurvatureFlowFunction< TImage > | |
CurvatureFlowFunction () | |
~CurvatureFlowFunction () | |
Protected Member Functions inherited from itk::FiniteDifferenceFunction< TImage > | |
FiniteDifferenceFunction () | |
void | PrintSelf (std::ostream &os, Indent indent) const |
~FiniteDifferenceFunction () | |
Protected Member Functions inherited from itk::LightObject | |
virtual LightObject::Pointer | InternalClone () const |
LightObject () | |
virtual void | PrintHeader (std::ostream &os, Indent indent) const |
virtual void | PrintTrailer (std::ostream &os, Indent indent) const |
virtual | ~LightObject () |
Protected Attributes | |
StencilOperatorType | m_StencilOperator |
Private Member Functions | |
virtual PixelType | ComputeThreshold (const Dispatch< 2 > &, const NeighborhoodType &neighborhood) const |
virtual PixelType | ComputeThreshold (const Dispatch< 3 > &, const NeighborhoodType &neighborhood) const |
virtual PixelType | ComputeThreshold (const DispatchBase &, const NeighborhoodType &neighborhood) const |
MinMaxCurvatureFlowFunction (const Self &) | |
void | operator= (const Self &) |
Private Attributes | |
RadiusValueType | m_StencilRadius |
This class encapsulate the finite difference equation which drives a min/max curvature flow denoising algorithm.
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 42 of file itkMinMaxCurvatureFlowFunction.h.
typedef SmartPointer< const Self > itk::MinMaxCurvatureFlowFunction< TImage >::ConstPointer |
Reimplemented from itk::CurvatureFlowFunction< TImage >.
Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >.
Definition at line 50 of file itkMinMaxCurvatureFlowFunction.h.
typedef Superclass::FloatOffsetType itk::MinMaxCurvatureFlowFunction< TImage >::FloatOffsetType |
A floating point offset from an image grid location. Used for interpolation among grid values in a neighborhood.
Reimplemented from itk::CurvatureFlowFunction< TImage >.
Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >.
Definition at line 64 of file itkMinMaxCurvatureFlowFunction.h.
typedef Superclass::ImageType itk::MinMaxCurvatureFlowFunction< TImage >::ImageType |
Inherit some parameters from the superclass type.
Reimplemented from itk::CurvatureFlowFunction< TImage >.
Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >.
Definition at line 57 of file itkMinMaxCurvatureFlowFunction.h.
typedef Superclass::NeighborhoodType itk::MinMaxCurvatureFlowFunction< TImage >::NeighborhoodType |
The type of data structure that is passed to this function object to evaluate at a pixel that does not lie on a data set boundary.
Reimplemented from itk::CurvatureFlowFunction< TImage >.
Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >.
Definition at line 63 of file itkMinMaxCurvatureFlowFunction.h.
typedef Superclass::PixelType itk::MinMaxCurvatureFlowFunction< TImage >::PixelType |
Reimplemented from itk::CurvatureFlowFunction< TImage >.
Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >.
Definition at line 61 of file itkMinMaxCurvatureFlowFunction.h.
typedef SmartPointer< Self > itk::MinMaxCurvatureFlowFunction< TImage >::Pointer |
Reimplemented from itk::CurvatureFlowFunction< TImage >.
Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >.
Definition at line 49 of file itkMinMaxCurvatureFlowFunction.h.
typedef Superclass::RadiusType itk::MinMaxCurvatureFlowFunction< TImage >::RadiusType |
Neighborhood radius type
Reimplemented from itk::CurvatureFlowFunction< TImage >.
Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >.
Definition at line 62 of file itkMinMaxCurvatureFlowFunction.h.
typedef RadiusType::SizeValueType itk::MinMaxCurvatureFlowFunction< TImage >::RadiusValueType |
Typedef support for the stencil radius.
Definition at line 71 of file itkMinMaxCurvatureFlowFunction.h.
typedef MinMaxCurvatureFlowFunction itk::MinMaxCurvatureFlowFunction< TImage >::Self |
Standard class typedefs.
Reimplemented from itk::CurvatureFlowFunction< TImage >.
Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >.
Definition at line 47 of file itkMinMaxCurvatureFlowFunction.h.
|
protected |
Definition at line 90 of file itkMinMaxCurvatureFlowFunction.h.
typedef CurvatureFlowFunction< TImage > itk::MinMaxCurvatureFlowFunction< TImage >::Superclass |
Reimplemented from itk::CurvatureFlowFunction< TImage >.
Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >.
Definition at line 48 of file itkMinMaxCurvatureFlowFunction.h.
|
protected |
|
inlineprotected |
Definition at line 88 of file itkMinMaxCurvatureFlowFunction.h.
|
private |
|
privatevirtual |
This method computes the threshold by averaging the intensity in direction perpendicular to the image gradient.
|
privatevirtual |
|
privatevirtual |
|
virtual |
This method computes the solution update for each pixel that does not lie on a the data set boundary.
Reimplemented from itk::CurvatureFlowFunction< TImage >.
Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >.
|
virtual |
Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.
Reimplemented from itk::CurvatureFlowFunction< TImage >.
Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >.
|
virtual |
Run-time type information (and related methods)
Reimplemented from itk::CurvatureFlowFunction< TImage >.
Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >.
|
inline |
Definition at line 76 of file itkMinMaxCurvatureFlowFunction.h.
|
protected |
Initialize the stencil opearator to be an N-Dimensional sphere of radius m_StencilRadius.
|
static |
Method for creation through the object factory.
Reimplemented from itk::CurvatureFlowFunction< TImage >.
Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >.
|
private |
Mutex lock to protect modification to the reference count
Reimplemented from itk::CurvatureFlowFunction< TImage >.
Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >.
void itk::MinMaxCurvatureFlowFunction< TImage >::SetStencilRadius | ( | const RadiusValueType | radius | ) |
Set/Get the stencil radius.
|
static |
Extract superclass dimension.
Reimplemented from itk::CurvatureFlowFunction< TImage >.
Reimplemented in itk::BinaryMinMaxCurvatureFlowFunction< TImage >.
Definition at line 68 of file itkMinMaxCurvatureFlowFunction.h.
|
protected |
Definition at line 91 of file itkMinMaxCurvatureFlowFunction.h.
|
private |
Definition at line 101 of file itkMinMaxCurvatureFlowFunction.h.