00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkFRPROptimizer.h,v $ 00005 Language: C++ 00006 Date: $Date: 2005/03/22 00:13:48 $ 00007 Version: $Revision: 1.1 $ 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 __itkFRPROptimizer_h 00018 #define __itkFRPROptimizer_h 00019 00020 #include <itkVector.h> 00021 #include <itkMatrix.h> 00022 #include <itkPowellOptimizer.h> 00023 00024 namespace itk 00025 { 00026 00050 class ITK_EXPORT FRPROptimizer: 00051 public PowellOptimizer 00052 { 00053 public: 00055 typedef FRPROptimizer Self ; 00056 typedef PowellOptimizer Superclass; 00057 typedef SmartPointer<Self> Pointer; 00058 typedef SmartPointer<const Self> ConstPointer; 00059 00060 typedef SingleValuedNonLinearOptimizer::ParametersType 00061 ParametersType; 00062 00064 itkNewMacro(Self); 00065 00067 itkTypeMacro(FRPROptimizer, PowellOptimizer ); 00068 00070 typedef SingleValuedCostFunction CostFunctionType; 00071 typedef CostFunctionType::Pointer CostFunctionPointer; 00072 00074 void StartOptimization() ; 00075 00076 protected: 00077 FRPROptimizer() ; 00078 virtual ~FRPROptimizer() ; 00079 00080 void PrintSelf(std::ostream& os, Indent indent) const; 00081 00085 virtual void GetValueAndDerivative(ParametersType p, double * val, 00086 ParametersType * xi); 00087 00088 virtual void LineOptimize(ParametersType * p, ParametersType xi, 00089 double * val ); 00090 00091 00092 private: 00093 FRPROptimizer(const FRPROptimizer&) ; // not implemented 00094 00095 } ; // end of class 00096 00097 } // end of namespace itk 00098 00099 #endif