00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkGradientDescentOptimizer_h
00018 #define __itkGradientDescentOptimizer_h
00019
00020 #include "itkSingleValuedNonLinearOptimizer.h"
00021
00022 namespace itk
00023 {
00024
00048 class ITK_EXPORT GradientDescentOptimizer :
00049 public SingleValuedNonLinearOptimizer
00050 {
00051 public:
00053 typedef GradientDescentOptimizer Self;
00054 typedef SingleValuedNonLinearOptimizer Superclass;
00055 typedef SmartPointer<Self> Pointer;
00056 typedef SmartPointer<const Self> ConstPointer;
00057
00059 itkNewMacro(Self);
00060
00062 itkTypeMacro( GradientDescentOptimizer, SingleValuedNonLinearOptimizer );
00063
00064
00066 typedef enum {
00067 MaximumNumberOfIterations,
00068 MetricError
00069 } StopConditionType;
00070
00072 itkGetConstReferenceMacro( Maximize, bool );
00073 itkSetMacro( Maximize, bool );
00074 itkBooleanMacro( Maximize );
00075 bool GetMinimize( ) const
00076 { return !m_Maximize; }
00077 void SetMinimize(bool v)
00078 { this->SetMaximize(!v); }
00079 void MinimizeOn()
00080 { this->MaximizeOff(); }
00081 void MinimizeOff()
00082 { this->MaximizeOn(); }
00083
00085 virtual void AdvanceOneStep( void );
00086
00088 void StartOptimization( void );
00089
00092 void ResumeOptimization( void );
00093
00096 void StopOptimization( void );
00097
00099 itkSetMacro( LearningRate, double );
00100
00102 itkGetConstReferenceMacro( LearningRate, double);
00103
00105 itkSetMacro( NumberOfIterations, unsigned long );
00106
00108 itkGetConstReferenceMacro( NumberOfIterations, unsigned long );
00109
00111 itkGetConstMacro( CurrentIteration, unsigned int );
00112
00114 itkGetConstReferenceMacro( Value, double );
00115
00117 itkGetConstReferenceMacro( StopCondition, StopConditionType );
00118
00120 itkGetConstReferenceMacro( Gradient, DerivativeType );
00121
00122
00123 protected:
00124 GradientDescentOptimizer();
00125 virtual ~GradientDescentOptimizer() {};
00126 void PrintSelf(std::ostream& os, Indent indent) const;
00127
00128
00129
00130 DerivativeType m_Gradient;
00131 bool m_Maximize;
00132 double m_LearningRate;
00133
00134 private:
00135 GradientDescentOptimizer(const Self&);
00136 void operator=(const Self&);
00137
00138 bool m_Stop;
00139 double m_Value;
00140 StopConditionType m_StopCondition;
00141 unsigned long m_NumberOfIterations;
00142 unsigned long m_CurrentIteration;
00143
00144
00145
00146 };
00147
00148 }
00149
00150
00151 #endif
00152
00153
00154