ITK
5.2.0
Insight Toolkit
|
#include <itkCumulativeGaussianOptimizer.h>
Public Member Functions | |
virtual ::itk::LightObject::Pointer | CreateAnother () const |
virtual const char * | GetNameOfClass () const |
Public Member Functions inherited from itk::MultipleValuedNonLinearOptimizer | |
virtual ::itk::LightObject::Pointer | CreateAnother () const |
virtual void | SetCostFunction (CostFunctionType *costFunction) |
Public Member Functions inherited from itk::NonLinearOptimizer | |
virtual ::itk::LightObject::Pointer | CreateAnother () const |
Public Member Functions inherited from itk::Optimizer | |
virtual ::itk::LightObject::Pointer | CreateAnother () const |
virtual const ParametersType & | GetInitialPosition () const |
virtual void | SetInitialPosition (const ParametersType ¶m) |
void | SetScales (const ScalesType &scales) |
virtual const ScalesType & | GetScales () const |
virtual const ScalesType & | GetInverseScales () const |
virtual const ParametersType & | GetCurrentPosition () const |
Public Member Functions inherited from itk::Object | |
unsigned long | AddObserver (const EventObject &event, Command *) |
unsigned long | AddObserver (const EventObject &event, Command *) const |
unsigned long | AddObserver (const EventObject &event, std::function< void(const EventObject &)> function) const |
virtual void | DebugOff () const |
virtual void | DebugOn () const |
Command * | GetCommand (unsigned long tag) |
bool | GetDebug () const |
MetaDataDictionary & | GetMetaDataDictionary () |
const MetaDataDictionary & | GetMetaDataDictionary () const |
virtual ModifiedTimeType | GetMTime () const |
virtual const TimeStamp & | GetTimeStamp () const |
bool | HasObserver (const EventObject &event) const |
void | InvokeEvent (const EventObject &) |
void | InvokeEvent (const EventObject &) const |
virtual void | Modified () const |
void | Register () const override |
void | RemoveAllObservers () |
void | RemoveObserver (unsigned long tag) |
void | SetDebug (bool debugFlag) const |
void | SetReferenceCount (int) override |
void | UnRegister () const noexcept override |
void | SetMetaDataDictionary (const MetaDataDictionary &rhs) |
void | SetMetaDataDictionary (MetaDataDictionary &&rrhs) |
virtual void | SetObjectName (std::string _arg) |
virtual const std::string & | GetObjectName () const |
Public Member Functions inherited from itk::LightObject | |
Pointer | Clone () const |
virtual void | Delete () |
virtual int | GetReferenceCount () const |
void | Print (std::ostream &os, Indent indent=0) const |
Additional Inherited Members | |
Protected Member Functions inherited from itk::MultipleValuedNonLinearOptimizer | |
MultipleValuedNonLinearOptimizer () | |
void | PrintSelf (std::ostream &os, Indent indent) const override |
~MultipleValuedNonLinearOptimizer () override=default | |
Protected Member Functions inherited from itk::NonLinearOptimizer | |
NonLinearOptimizer ()=default | |
~NonLinearOptimizer () override | |
Protected Member Functions inherited from itk::Optimizer | |
Optimizer () | |
~Optimizer () override=default | |
void | PrintSelf (std::ostream &os, Indent indent) const override |
virtual void | SetCurrentPosition (const ParametersType ¶m) |
Protected Member Functions inherited from itk::Object | |
Object () | |
~Object () override | |
bool | PrintObservers (std::ostream &os, Indent indent) const |
virtual void | SetTimeStamp (const TimeStamp &timeStamp) |
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 inherited from itk::MultipleValuedNonLinearOptimizer | |
CostFunctionPointer | m_CostFunction |
Protected Attributes inherited from itk::Optimizer | |
bool | m_ScalesInitialized { false } |
ParametersType | m_CurrentPosition |
Protected Attributes inherited from itk::LightObject | |
std::atomic< int > | m_ReferenceCount |
This is an optimizer specific to estimating the parameters of Cumulative Gaussian sampled data.
This optimizer will only work if the data array is sampled from a Cumulative Gaussian curve. It's more of a curve fitter than an optimizer, with the advantage of being fast and specific. It works by taking the derivative of the Cumulative Gaussian sample then repeatedly extending the tails of the Gaussian and recalculating the Gaussian parameters until the change in iterations is within tolerance or very small. The Gaussian is then integrated to reproduce the Cumulative Gaussian and the asymptotes are estimated by using least squares fit to estimate the constant from integration.
Definition at line 48 of file itkCumulativeGaussianOptimizer.h.
using itk::CumulativeGaussianOptimizer::ConstPointer = SmartPointer<const Self> |
Definition at line 55 of file itkCumulativeGaussianOptimizer.h.
Cost function type alias. NOTE: This optimizer is specific to fitting a Cumulative Gaussian.
Definition at line 59 of file itkCumulativeGaussianOptimizer.h.
Data array type alias.
Definition at line 62 of file itkCumulativeGaussianOptimizer.h.
Definition at line 54 of file itkCumulativeGaussianOptimizer.h.
Standard type alias.
Definition at line 52 of file itkCumulativeGaussianOptimizer.h.
Definition at line 53 of file itkCumulativeGaussianOptimizer.h.
|
protected |
When to stop the iteration for the Gaussian extension loop.
|
overrideprotected |
When to stop the iteration for the Gaussian extension loop.
|
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::Object.
|
private |
Extend the tails of the Gaussian.
|
private |
Calculates the squared difference error between each Gaussian iteration loop.
|
private |
Given an array sampled from a Gaussin, compute the final parameters.
|
virtual |
When to stop the iteration for the Gaussian extension loop.
|
virtual |
When to stop the iteration for the Gaussian extension loop.
|
virtual |
When to stop the iteration for the Gaussian extension loop.
|
virtual |
When to stop the iteration for the Gaussian extension loop.
|
virtual |
When to stop the iteration for the Gaussian extension loop.
|
virtual |
When to stop the iteration for the Gaussian extension loop.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::MultipleValuedNonLinearOptimizer.
|
overridevirtual |
Report the reason for stopping.
Reimplemented from itk::Optimizer.
|
virtual |
When to stop the iteration for the Gaussian extension loop.
|
virtual |
When to stop the iteration for the Gaussian extension loop.
|
private |
Measure the parameters of a Gaussian sampled array.
|
static |
Method for creation through the object factory.
void itk::CumulativeGaussianOptimizer::PrintArray | ( | MeasureType * | array | ) |
Print an array.
|
private |
Print the header for output table.
|
private |
Print the computed parameters.
|
overrideprotectedvirtual |
When to stop the iteration for the Gaussian extension loop.
Reimplemented from itk::Object.
|
private |
Recalulate the parameters of the extended Gaussian array.
void itk::CumulativeGaussianOptimizer::SetDataArray | ( | MeasureType * | cumGaussianArray | ) |
When to stop the iteration for the Gaussian extension loop.
|
virtual |
Set and get macros.
|
virtual |
When to stop the iteration for the Gaussian extension loop.
|
overridevirtual |
Start the optimizer.
Reimplemented from itk::Optimizer.
|
private |
Find the constant of the integrated sample.
|
private |
The final amplitude of the Gaussian.
Definition at line 115 of file itkCumulativeGaussianOptimizer.h.
|
private |
The final mean of the Cumulative Gaussian.
Definition at line 109 of file itkCumulativeGaussianOptimizer.h.
|
private |
The final standard deviation of the Cumulative Gaussian.
Definition at line 112 of file itkCumulativeGaussianOptimizer.h.
|
private |
The transition height (distance between upper and lower asymptotes) of the Cumulative Gaussian.
Definition at line 119 of file itkCumulativeGaussianOptimizer.h.
|
private |
Original data array.
Definition at line 141 of file itkCumulativeGaussianOptimizer.h.
|
private |
When to stop the iteration for the Gaussian extension loop.
Definition at line 106 of file itkCumulativeGaussianOptimizer.h.
|
private |
Array of values computed from the final parameters of the Cumulative Gaussian.
Definition at line 138 of file itkCumulativeGaussianOptimizer.h.
|
private |
Least squares fit error as a measure of goodness.
Definition at line 134 of file itkCumulativeGaussianOptimizer.h.
|
private |
The final lower asymptote of the Cumulative Gaussian.
Definition at line 125 of file itkCumulativeGaussianOptimizer.h.
|
private |
Offset for the mean calculation.
Definition at line 128 of file itkCumulativeGaussianOptimizer.h.
|
private |
Describe the stop condition
Definition at line 179 of file itkCumulativeGaussianOptimizer.h.
|
private |
The final upper asymptote of the Cumulative Gaussian.
Definition at line 122 of file itkCumulativeGaussianOptimizer.h.
|
private |
Flag to print iteration results.
Definition at line 131 of file itkCumulativeGaussianOptimizer.h.