|
|
Home | Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Data Structures | File List | Namespace Members | Data Fields | Globals | Related Pages |
#include <itkLimiterFunctionBase.h>


Public Types | |
| typedef SmartPointer< const Self > | ConstPointer |
| typedef CovariantVector < DerivativeValueType, itkGetStaticConstMacro(Dimension)> | DerivativeType |
| typedef OutputType | DerivativeValueType |
| typedef Superclass::InputType | InputType |
| typedef Superclass::OutputType | OutputType |
| typedef SmartPointer< Self > | Pointer |
| typedef LimiterFunctionBase | Self |
| typedef FunctionBase< TInput, typename NumericTraits< TInput > ::RealType > | Superclass |
Public Member Functions | |
| virtual OutputType | Evaluate (const InputType &input) const =0 |
| virtual OutputType | Evaluate (const InputType &input, DerivativeType &derivative) const =0 |
| virtual const char * | GetClassName () const |
| virtual OutputType | GetLowerBound () const |
| virtual InputType | GetLowerThreshold () const |
| virtual OutputType | GetUpperBound () const |
| virtual InputType | GetUpperThreshold () const |
| virtual void | Initialize (void) throw (ExceptionObject) |
| itkStaticConstMacro (Dimension, unsigned int, NDimension) | |
| virtual void | SetLowerBound (OutputType _arg) |
| virtual void | SetLowerThreshold (InputType _arg) |
| virtual void | SetUpperBound (OutputType _arg) |
| virtual void | SetUpperThreshold (InputType _arg) |
Protected Member Functions | |
| LimiterFunctionBase () | |
| ~LimiterFunctionBase () | |
Protected Attributes | |
| OutputType | m_LowerBound |
| InputType | m_LowerThreshold |
| OutputType | m_UpperBound |
| InputType | m_UpperThreshold |
Private Member Functions | |
| LimiterFunctionBase (const Self &) | |
| void | operator= (const Self &) |
Base class for all ITK limiter function objects.
LimiterFunctionBase is the base class for ITK limiter function objects. The abstract method Evaluate() should limit a function, i.e. it should make sure that its output is below a certain value. The derivative of a function that is limited also changes.
In formula:
where
is the original function. and
the limited version. The derivative with respect to
should satisfy:
Subclasses must override Evaluate(value) and Evaluate(value, derivative) .
This class is template over the input type and the dimension of
.
Definition at line 48 of file itkLimiterFunctionBase.h.
| typedef SmartPointer<const Self> itk::LimiterFunctionBase< TInput, NDimension >::ConstPointer |
Definition at line 57 of file itkLimiterFunctionBase.h.
| typedef CovariantVector< DerivativeValueType, itkGetStaticConstMacro(Dimension)> itk::LimiterFunctionBase< TInput, NDimension >::DerivativeType |
Definition at line 71 of file itkLimiterFunctionBase.h.
| typedef OutputType itk::LimiterFunctionBase< TInput, NDimension >::DerivativeValueType |
Definition at line 68 of file itkLimiterFunctionBase.h.
| typedef Superclass::InputType itk::LimiterFunctionBase< TInput, NDimension >::InputType |
Superclass' typedefs
Definition at line 65 of file itkLimiterFunctionBase.h.
| typedef Superclass::OutputType itk::LimiterFunctionBase< TInput, NDimension >::OutputType |
Definition at line 66 of file itkLimiterFunctionBase.h.
| typedef SmartPointer<Self> itk::LimiterFunctionBase< TInput, NDimension >::Pointer |
Definition at line 56 of file itkLimiterFunctionBase.h.
| typedef LimiterFunctionBase itk::LimiterFunctionBase< TInput, NDimension >::Self |
Standard class typedefs.
Definition at line 53 of file itkLimiterFunctionBase.h.
| typedef FunctionBase< TInput, typename NumericTraits< TInput >::RealType > itk::LimiterFunctionBase< TInput, NDimension >::Superclass |
Definition at line 55 of file itkLimiterFunctionBase.h.
|
inlineprotected |
Definition at line 103 of file itkLimiterFunctionBase.h.
|
inlineprotected |
Definition at line 112 of file itkLimiterFunctionBase.h.
|
private |
|
pure virtual |
Limit the input value.
Implemented in itk::ExponentialLimiterFunction< TInput, NDimension >, and itk::HardLimiterFunction< TInput, NDimension >.
|
pure virtual |
Limit the input value and change the input function derivative accordingly
Implemented in itk::ExponentialLimiterFunction< TInput, NDimension >, and itk::HardLimiterFunction< TInput, NDimension >.
|
virtual |
Run-time type information (and related methods).
Reimplemented in itk::ExponentialLimiterFunction< TInput, NDimension >, and itk::HardLimiterFunction< TInput, NDimension >.
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
inlinevirtual | ||||||||||||||
Initialize the limiter
Reimplemented in itk::ExponentialLimiterFunction< TInput, NDimension >.
Definition at line 100 of file itkLimiterFunctionBase.h.
| itk::LimiterFunctionBase< TInput, NDimension >::itkStaticConstMacro | ( | Dimension | , |
| unsigned | int, | ||
| NDimension | |||
| ) |
|
private |
|
virtual |
Set/Get the lower bound that the output should respect. Make sure it is lower than the higher bound.
|
virtual |
Set the point where the limiter starts to work. Only input values below this number will possibly be affected. Make sure it is >= than the LowerBound.
|
virtual |
Set/Get the upper bound that the output should respect. Make sure it is higher than the lower bound.
|
virtual |
Set the point where the limiter starts to work. Only input values above this number will possibly be affected. Make sure it is <= than the UpperBound.
|
protected |
Definition at line 115 of file itkLimiterFunctionBase.h.
|
protected |
Definition at line 117 of file itkLimiterFunctionBase.h.
|
protected |
Definition at line 112 of file itkLimiterFunctionBase.h.
|
protected |
Definition at line 116 of file itkLimiterFunctionBase.h.
Generated on 06-12-2013 for elastix by 1.8.5 |