ITK
4.2.0
Insight Segmentation and Registration Toolkit
|
#include <itkFRPROptimizer.h>
Public Types | |
typedef SmartPointer< const Self > | ConstPointer |
typedef CostFunctionType::Pointer | CostFunctionPointer |
typedef SingleValuedCostFunction | CostFunctionType |
typedef SingleValuedNonLinearOptimizer::ParametersType | ParametersType |
typedef SmartPointer< Self > | Pointer |
typedef FRPROptimizer | Self |
typedef PowellOptimizer | Superclass |
Public Types inherited from itk::PowellOptimizer | |
Public Types inherited from itk::SingleValuedNonLinearOptimizer | |
typedef CostFunctionType::DerivativeType | DerivativeType |
typedef CostFunctionType::MeasureType | MeasureType |
Public Types inherited from itk::NonLinearOptimizer | |
typedef Superclass::ScalesType | ScalesType |
Public Types inherited from itk::Optimizer | |
Public Types inherited from itk::Object | |
Public Types inherited from itk::LightObject |
Public Member Functions | |
virtual ::itk::LightObject::Pointer | CreateAnother (void) const |
virtual const char * | GetNameOfClass () const |
void | SetToFletchReeves () |
void | SetToPolakRibiere () |
void | StartOptimization () |
virtual void | SetUseUnitLengthGradient (bool _arg) |
virtual bool | GetUseUnitLengthGradient () const |
Public Member Functions inherited from itk::PowellOptimizer | |
virtual const bool & | GetCatchGetValueException () |
virtual const unsigned int & | GetCurrentIteration () |
virtual const unsigned int & | GetCurrentLineIteration () |
virtual const double & | GetMetricWorstPossibleValue () |
const std::string | GetStopConditionDescription () const |
virtual void | SetCatchGetValueException (bool _arg) |
virtual void | SetMetricWorstPossibleValue (double _arg) |
void | StopOptimization () |
virtual void | SetMaximize (bool _arg) |
virtual void | MaximizeOn () |
virtual void | MaximizeOff () |
virtual const bool & | GetMaximize () |
virtual void | SetMaximumIteration (unsigned int _arg) |
virtual const unsigned int & | GetMaximumIteration () |
virtual void | SetMaximumLineIteration (unsigned int _arg) |
virtual unsigned int | GetMaximumLineIteration () const |
virtual void | SetStepLength (double _arg) |
virtual const double & | GetStepLength () |
virtual void | SetStepTolerance (double _arg) |
virtual const double & | GetStepTolerance () |
virtual void | SetValueTolerance (double _arg) |
virtual const double & | GetValueTolerance () |
virtual const MeasureType & | GetCurrentCost () |
MeasureType | GetValue () const |
Public Member Functions inherited from itk::SingleValuedNonLinearOptimizer | |
virtual const CostFunctionType * | GetCostFunction () |
MeasureType | GetValue (const ParametersType ¶meters) const |
virtual void | SetCostFunction (CostFunctionType *costFunction) |
Static Public Member Functions | |
static Pointer | New () |
Protected Member Functions | |
FRPROptimizer () | |
virtual void | GetValueAndDerivative (ParametersType &p, double *val, ParametersType *xi) |
virtual void | LineOptimize (ParametersType *p, ParametersType &xi, double *val) |
virtual void | LineOptimize (ParametersType *p, ParametersType &xi, double *val, ParametersType &tempCoord) |
void | PrintSelf (std::ostream &os, Indent indent) const |
virtual | ~FRPROptimizer () |
Protected Member Functions inherited from itk::PowellOptimizer | |
virtual void | BracketedLineOptimize (double ax, double bx, double cx, double fa, double fb, double fc, double *extX, double *extVal) |
virtual void | BracketedLineOptimize (double ax, double bx, double cx, double fa, double fb, double fc, double *extX, double *extVal, ParametersType &tempCoord) |
double | GetLineValue (double x) const |
double | GetLineValue (double x, ParametersType &tempCoord) const |
virtual unsigned int | GetSpaceDimension () |
virtual bool | GetStop () |
virtual void | LineBracket (double *ax, double *bx, double *cx, double *fa, double *fb, double *fc) |
virtual void | LineBracket (double *ax, double *bx, double *cx, double *fa, double *fb, double *fc, ParametersType &tempCoord) |
PowellOptimizer () | |
PowellOptimizer (const PowellOptimizer &) | |
virtual void | SetCurrentCost (double _arg) |
virtual void | SetCurrentIteration (unsigned int _arg) |
void | SetCurrentLinePoint (double x, double fx) |
void | SetLine (const ParametersType &origin, const vnl_vector< double > &direction) |
void | SetSpaceDimension (unsigned int dim) |
virtual void | SetStop (bool _arg) |
void | Shift (double *a, double *b, double *c, double d) const |
void | Swap (double *a, double *b) const |
virtual | ~PowellOptimizer () |
Protected Member Functions inherited from itk::SingleValuedNonLinearOptimizer | |
SingleValuedNonLinearOptimizer () | |
virtual | ~SingleValuedNonLinearOptimizer () |
NonLinearOptimizer () | |
virtual | ~NonLinearOptimizer () |
Protected Member Functions inherited from itk::Optimizer | |
Optimizer () | |
virtual void | SetCurrentPosition (const ParametersType ¶m) |
virtual | ~Optimizer () |
Protected Member Functions inherited from itk::Object | |
Object () | |
bool | PrintObservers (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 Types | |
enum | OptimizationType { FletchReeves, PolakRibiere } |
Private Member Functions | |
FRPROptimizer (const FRPROptimizer &) |
Private Attributes | |
OptimizationType | m_OptimizationType |
bool | m_UseUnitLengthGradient |
Implements Fletch-Reeves & Polak-Ribiere optimization using dBrent line search.
This optimizer needs a cost function. This optimizer needs to be able to compute partial derivatives of the cost function with respect to each parameter.
The SetStepLength determines the initial distance to step in a line direction when bounding the minimum (using bracketing triple spaced using a derivative-based search strategy).
The StepTolerance terminates optimization when the parameter values are known to be within this (scaled) distance of the local extreme.
The ValueTolerance terminates optimization when the cost function values at the current parameters and at the local extreme are likely (within a second order approximation) to be within this is tolerance.
Definition at line 49 of file itkFRPROptimizer.h.
typedef SmartPointer< const Self > itk::FRPROptimizer::ConstPointer |
Reimplemented from itk::PowellOptimizer.
Definition at line 57 of file itkFRPROptimizer.h.
Reimplemented from itk::PowellOptimizer.
Definition at line 69 of file itkFRPROptimizer.h.
Type of the Cost Function
Reimplemented from itk::PowellOptimizer.
Definition at line 65 of file itkFRPROptimizer.h.
Parameters type. It defines a position in the optimization search space.
Reimplemented from itk::PowellOptimizer.
Definition at line 59 of file itkFRPROptimizer.h.
typedef SmartPointer< Self > itk::FRPROptimizer::Pointer |
Reimplemented from itk::PowellOptimizer.
Definition at line 56 of file itkFRPROptimizer.h.
Standard "Self" typedef.
Reimplemented from itk::PowellOptimizer.
Definition at line 54 of file itkFRPROptimizer.h.
Reimplemented from itk::PowellOptimizer.
Definition at line 55 of file itkFRPROptimizer.h.
|
private |
Definition at line 107 of file itkFRPROptimizer.h.
|
protected |
|
protectedvirtual |
|
private |
|
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::PowellOptimizer.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::PowellOptimizer.
|
virtual |
Convert gradient to a unit length vector
|
protectedvirtual |
Get the value of the n-dimensional cost function at this scalar step distance along the current line direction from the current line origin. Line origin and distances are set via SetLine
|
protectedvirtual |
|
protectedvirtual |
|
static |
Method for creation through the object factory.
Reimplemented from itk::PowellOptimizer.
|
protectedvirtual |
Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from itk::PowellOptimizer.
void itk::FRPROptimizer::SetToFletchReeves | ( | ) |
Set it to the Fletch-Reeves optimizer
void itk::FRPROptimizer::SetToPolakRibiere | ( | ) |
Set it to the Fletch-Reeves optimizer
|
virtual |
Convert gradient to a unit length vector
|
virtual |
Start optimization.
Reimplemented from itk::PowellOptimizer.
|
private |
Definition at line 112 of file itkFRPROptimizer.h.
|
private |
Definition at line 114 of file itkFRPROptimizer.h.