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

itkLevenbergMarquardtOptimizer.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkLevenbergMarquardtOptimizer.h,v $
00005   Language:  C++
00006   Date:      $Date: 2002/03/07 00:20:10 $
00007   Version:   $Revision: 1.18 $
00008 
00009   Copyright (c) 2002 Insight 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 __itkLevenbergMarquardtOptimizer_h
00018 #define __itkLevenbergMarquardtOptimizer_h
00019 
00020 #include "itkMultipleValuedNonLinearVnlOptimizer.h"
00021 #include "vnl/algo/vnl_levenberg_marquardt.h"
00022 
00023 namespace itk
00024 {
00025   
00031 class ITK_EXPORT LevenbergMarquardtOptimizer : 
00032     public MultipleValuedNonLinearVnlOptimizer
00033 {
00034 public:
00036   typedef LevenbergMarquardtOptimizer           Self;
00037   typedef MultipleValuedNonLinearVnlOptimizer   Superclass;
00038   typedef SmartPointer<Self>                    Pointer;
00039   typedef SmartPointer<const Self>              ConstPointer;
00040   
00042   itkNewMacro(Self);
00043 
00045   itkTypeMacro( LevenbergMarquardtOptimizer, MultipleValuedNonLinearVnlOptimizer );
00046 
00048   typedef   vnl_vector<double>     InternalParametersType;
00049 
00051   typedef   vnl_levenberg_marquardt   InternalOptimizerType;
00052 
00054   vnl_levenberg_marquardt * GetOptimizer(void);
00055 
00057   void StartOptimization( void );
00058 
00060   virtual void SetCostFunction( MultipleValuedCostFunction * costFunction );
00061 
00062 protected:
00063   LevenbergMarquardtOptimizer();
00064   virtual ~LevenbergMarquardtOptimizer();
00065 
00066   typedef Superclass::CostFunctionAdaptorType   CostFunctionAdaptorType;
00067 
00068 private:
00069   LevenbergMarquardtOptimizer(const Self&); //purposely not implemented
00070   void operator=(const Self&); //purposely not implemented
00071   
00072   bool                          m_OptimizerInitialized;
00073   InternalOptimizerType       * m_VnlOptimizer;
00074 
00075 };
00076 
00077 } // end namespace itk
00078 
00079 
00080 #endif
00081 
00082 
00083 

Generated at Fri May 21 01:15:00 2004 for ITK by doxygen 1.2.15 written by Dimitri van Heesch, © 1997-2000