test_downhill_simplex.cpp 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*M///////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
  4. //
  5. // By downloading, copying, installing or using the software you agree to this license.
  6. // If you do not agree to this license, do not download, install,
  7. // copy or use the software.
  8. //
  9. //
  10. // License Agreement
  11. // For Open Source Computer Vision Library
  12. //
  13. // Copyright (C) 2013, OpenCV Foundation, all rights reserved.
  14. // Third party copyrights are property of their respective owners.
  15. //
  16. // Redistribution and use in source and binary forms, with or without modification,
  17. // are permitted provided that the following conditions are met:
  18. //
  19. // * Redistribution's of source code must retain the above copyright notice,
  20. // this list of conditions and the following disclaimer.
  21. //
  22. // * Redistribution's in binary form must reproduce the above copyright notice,
  23. // this list of conditions and the following disclaimer in the documentation
  24. // and/or other materials provided with the distribution.
  25. //
  26. // * The name of the copyright holders may not be used to endorse or promote products
  27. // derived from this software without specific prior written permission.
  28. //
  29. // This software is provided by the copyright holders and contributors "as is" and
  30. // any express or implied warranties, including, but not limited to, the implied
  31. // warranties of merchantability and fitness for a particular purpose are disclaimed.
  32. // In no event shall the OpenCV Foundation or contributors be liable for any direct,
  33. // indirect, incidental, special, exemplary, or consequential damages
  34. // (including, but not limited to, procurement of substitute goods or services;
  35. // loss of use, data, or profits; or business interruption) however caused
  36. // and on any theory of liability, whether in contract, strict liability,
  37. // or tort (including negligence or otherwise) arising in any way out of
  38. // the use of this software, even if advised of the possibility of such damage.
  39. //
  40. //M*/
  41. #include "test_precomp.hpp"
  42. namespace opencv_test { namespace {
  43. static void mytest(cv::Ptr<cv::DownhillSolver> solver,cv::Ptr<cv::MinProblemSolver::Function> ptr_F,cv::Mat& x,cv::Mat& step,
  44. cv::Mat& etalon_x,double etalon_res){
  45. solver->setFunction(ptr_F);
  46. int ndim=MAX(step.cols,step.rows);
  47. solver->setInitStep(step);
  48. cv::Mat settedStep;
  49. solver->getInitStep(settedStep);
  50. ASSERT_TRUE(settedStep.rows==1 && settedStep.cols==ndim);
  51. ASSERT_TRUE(std::equal(step.begin<double>(),step.end<double>(),settedStep.begin<double>()));
  52. std::cout<<"step set:\n\t"<<step<<std::endl;
  53. double res=solver->minimize(x);
  54. std::cout<<"res:\n\t"<<res<<std::endl;
  55. std::cout<<"x:\n\t"<<x<<std::endl;
  56. std::cout<<"etalon_res:\n\t"<<etalon_res<<std::endl;
  57. std::cout<<"etalon_x:\n\t"<<etalon_x<<std::endl;
  58. double tol=1e-2;//solver->getTermCriteria().epsilon;
  59. ASSERT_TRUE(std::abs(res-etalon_res)<tol);
  60. /*for(cv::Mat_<double>::iterator it1=x.begin<double>(),it2=etalon_x.begin<double>();it1!=x.end<double>();it1++,it2++){
  61. ASSERT_TRUE(std::abs((*it1)-(*it2))<tol);
  62. }*/
  63. std::cout<<"--------------------------\n";
  64. }
  65. class SphereF:public cv::MinProblemSolver::Function{
  66. public:
  67. int getDims() const { return 2; }
  68. double calc(const double* x)const{
  69. return x[0]*x[0]+x[1]*x[1];
  70. }
  71. };
  72. class RosenbrockF:public cv::MinProblemSolver::Function{
  73. int getDims() const { return 2; }
  74. double calc(const double* x)const{
  75. return 100*(x[1]-x[0]*x[0])*(x[1]-x[0]*x[0])+(1-x[0])*(1-x[0]);
  76. }
  77. };
  78. TEST(Core_DownhillSolver, regression_basic){
  79. cv::Ptr<cv::DownhillSolver> solver=cv::DownhillSolver::create();
  80. #if 1
  81. {
  82. cv::Ptr<cv::MinProblemSolver::Function> ptr_F = cv::makePtr<SphereF>();
  83. cv::Mat x=(cv::Mat_<double>(1,2)<<1.0,1.0),
  84. step=(cv::Mat_<double>(2,1)<<-0.5,-0.5),
  85. etalon_x=(cv::Mat_<double>(1,2)<<-0.0,0.0);
  86. double etalon_res=0.0;
  87. mytest(solver,ptr_F,x,step,etalon_x,etalon_res);
  88. }
  89. #endif
  90. #if 1
  91. {
  92. cv::Ptr<cv::MinProblemSolver::Function> ptr_F = cv::makePtr<RosenbrockF>();
  93. cv::Mat x=(cv::Mat_<double>(2,1)<<0.0,0.0),
  94. step=(cv::Mat_<double>(2,1)<<0.5,+0.5),
  95. etalon_x=(cv::Mat_<double>(2,1)<<1.0,1.0);
  96. double etalon_res=0.0;
  97. mytest(solver,ptr_F,x,step,etalon_x,etalon_res);
  98. }
  99. #endif
  100. }
  101. }} // namespace