ITK  4.4.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Protected Member Functions | Private Member Functions | List of all members
itk::HeavisideStepFunctionBase< TInput, TOutput > Class Template Referenceabstract

#include <itkHeavisideStepFunctionBase.h>

+ Inheritance diagram for itk::HeavisideStepFunctionBase< TInput, TOutput >:
+ Collaboration diagram for itk::HeavisideStepFunctionBase< TInput, TOutput >:

Detailed Description

template<typename TInput = float, typename TOutput = double>
class itk::HeavisideStepFunctionBase< TInput, TOutput >

Base class of the Heaviside function.

Author
Mosaliganti K., Smith B., Gelas A., Gouaillard A., Megason S.

This code was taken from the Insight Journal paper:

"Cell Tracking using Coupled Active Surfaces for Nuclei and Membranes"
http://www.insight-journal.org/browse/publication/642
http://hdl.handle.net/10380/3055

That is based on the papers:

"Level Set Segmentation: Active Contours without edge"
http://www.insight-journal.org/browse/publication/322
http://hdl.handle.net/1926/1532

and

"Level set segmentation using coupled active surfaces"
http://www.insight-journal.org/browse/publication/323
http://hdl.handle.net/1926/1533

Definition at line 54 of file itkHeavisideStepFunctionBase.h.

Public Types

typedef SmartPointer< const SelfConstPointer
 
typedef Superclass::InputType InputType
 
typedef Superclass::OutputType OutputType
 
typedef SmartPointer< SelfPointer
 
typedef HeavisideStepFunctionBase Self
 
typedef FunctionBase< TInput,
TOutput > 
Superclass
 
- Public Types inherited from itk::FunctionBase< TInput, TOutput >
typedef SmartPointer< const SelfConstPointer
 
typedef TInput InputType
 
typedef TOutput OutputType
 
typedef SmartPointer< SelfPointer
 
typedef FunctionBase Self
 
typedef Object Superclass
 
- Public Types inherited from itk::Object
typedef SmartPointer< const SelfConstPointer
 
typedef SmartPointer< SelfPointer
 
typedef Object Self
 
typedef LightObject Superclass
 
- Public Types inherited from itk::LightObject
typedef SmartPointer< const SelfConstPointer
 
typedef SmartPointer< SelfPointer
 
typedef LightObject Self
 

Public Member Functions

virtual OutputType Evaluate (const InputType &input) const =0
 
virtual OutputType EvaluateDerivative (const InputType &input) const =0
 
virtual const char * GetNameOfClass () const
 
 typedef (Concept::Convertible< double, TInput >) DoubleConvertibleToInputCheck
 
 typedef (Concept::Convertible< double, TOutput >) DoubleConvertibleToOutputCheck
 

Protected Member Functions

 HeavisideStepFunctionBase ()
 
virtual ~HeavisideStepFunctionBase ()
 
- Protected Member Functions inherited from itk::FunctionBase< TInput, TOutput >
 FunctionBase ()
 
 ~FunctionBase ()
 
- Protected Member Functions inherited from itk::Object
 Object ()
 
bool PrintObservers (std::ostream &os, Indent indent) const
 
virtual void PrintSelf (std::ostream &os, Indent indent) const
 
virtual void SetTimeStamp (const TimeStamp &time)
 
virtual ~Object ()
 
- 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 ()
 

Private Member Functions

 HeavisideStepFunctionBase (const Self &)
 
void operator= (const Self &)
 

Additional Inherited Members

- Static Public Member Functions inherited from itk::Object
static bool GetGlobalWarningDisplay ()
 
static void GlobalWarningDisplayOff ()
 
static void GlobalWarningDisplayOn ()
 
static Pointer New ()
 
static void SetGlobalWarningDisplay (bool flag)
 
- Protected Types inherited from itk::LightObject
typedef int InternalReferenceCountType
 
- Protected Attributes inherited from itk::LightObject
InternalReferenceCountType m_ReferenceCount
 
SimpleFastMutexLock m_ReferenceCountLock
 

Member Typedef Documentation

template<typename TInput = float, typename TOutput = double>
typedef SmartPointer< const Self > itk::HeavisideStepFunctionBase< TInput, TOutput >::ConstPointer

Definition at line 60 of file itkHeavisideStepFunctionBase.h.

template<typename TInput = float, typename TOutput = double>
typedef Superclass::InputType itk::HeavisideStepFunctionBase< TInput, TOutput >::InputType

Definition at line 63 of file itkHeavisideStepFunctionBase.h.

template<typename TInput = float, typename TOutput = double>
typedef Superclass::OutputType itk::HeavisideStepFunctionBase< TInput, TOutput >::OutputType

Definition at line 67 of file itkHeavisideStepFunctionBase.h.

template<typename TInput = float, typename TOutput = double>
typedef SmartPointer< Self > itk::HeavisideStepFunctionBase< TInput, TOutput >::Pointer

Definition at line 59 of file itkHeavisideStepFunctionBase.h.

template<typename TInput = float, typename TOutput = double>
typedef HeavisideStepFunctionBase itk::HeavisideStepFunctionBase< TInput, TOutput >::Self

Definition at line 57 of file itkHeavisideStepFunctionBase.h.

template<typename TInput = float, typename TOutput = double>
typedef FunctionBase< TInput, TOutput > itk::HeavisideStepFunctionBase< TInput, TOutput >::Superclass

Definition at line 58 of file itkHeavisideStepFunctionBase.h.

Constructor & Destructor Documentation

template<typename TInput = float, typename TOutput = double>
itk::HeavisideStepFunctionBase< TInput, TOutput >::HeavisideStepFunctionBase ( )
inlineprotected

Definition at line 84 of file itkHeavisideStepFunctionBase.h.

template<typename TInput = float, typename TOutput = double>
virtual itk::HeavisideStepFunctionBase< TInput, TOutput >::~HeavisideStepFunctionBase ( )
inlineprotectedvirtual

Definition at line 85 of file itkHeavisideStepFunctionBase.h.

template<typename TInput = float, typename TOutput = double>
itk::HeavisideStepFunctionBase< TInput, TOutput >::HeavisideStepFunctionBase ( const Self )
private

Member Function Documentation

template<typename TInput = float, typename TOutput = double>
virtual OutputType itk::HeavisideStepFunctionBase< TInput, TOutput >::Evaluate ( const InputType input) const
pure virtual
template<typename TInput = float, typename TOutput = double>
virtual OutputType itk::HeavisideStepFunctionBase< TInput, TOutput >::EvaluateDerivative ( const InputType input) const
pure virtual

Evaluate the derivative at the specified input position

Implemented in itk::HeavisideStepFunction< TInput, TOutput >, and itk::SinRegularizedHeavisideStepFunction< TInput, TOutput >.

template<typename TInput = float, typename TOutput = double>
virtual const char* itk::HeavisideStepFunctionBase< TInput, TOutput >::GetNameOfClass ( ) const
virtual
template<typename TInput = float, typename TOutput = double>
void itk::HeavisideStepFunctionBase< TInput, TOutput >::operator= ( const Self )
private
template<typename TInput = float, typename TOutput = double>
itk::HeavisideStepFunctionBase< TInput, TOutput >::typedef ( Concept::Convertible< double, TInput >  )

This class requires DoubleConvertibleToInputCheck in the form of ( Concept::Convertible< double, TInput > )

template<typename TInput = float, typename TOutput = double>
itk::HeavisideStepFunctionBase< TInput, TOutput >::typedef ( Concept::Convertible< double, TOutput >  )

This class requires DoubleConvertibleToOutputCheck in the form of ( Concept::Convertible< double, TOutput > )


The documentation for this class was generated from the following file: