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