Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkGradientDescentOptimizer.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkGradientDescentOptimizer.h,v $ 00005 Language: C++ 00006 Date: $Date: 2003/12/10 23:01:55 $ 00007 Version: $Revision: 1.28 $ 00008 00009 Copyright (c) Insight Software Consortium. All rights reserved. 00010 See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. 00011 00012 This software is distributed WITHOUT ANY WARRANTY; without even 00013 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00014 PURPOSE. See the above copyright notices for more information. 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 itkGetConstMacro( 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 itkGetConstMacro( LearningRate, double); 00103 00105 itkSetMacro( NumberOfIterations, unsigned long ); 00106 00108 itkGetConstMacro( NumberOfIterations, unsigned long ); 00109 00111 itkGetConstMacro( CurrentIteration, unsigned int ); 00112 00114 itkGetConstMacro( Value, double ); 00115 00117 itkGetConstMacro( 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 // made protected so subclass can access 00130 DerivativeType m_Gradient; 00131 bool m_Maximize; 00132 double m_LearningRate; 00133 00134 private: 00135 GradientDescentOptimizer(const Self&); //purposely not implemented 00136 void operator=(const Self&); //purposely not implemented 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 } // end namespace itk 00149 00150 00151 #endif 00152 00153 00154

Generated at Sun Apr 1 02:29:50 2007 for ITK by doxygen 1.3.8 written by Dimitri van Heesch, © 1997-2000