HomeSort by relevance Sort by last modified time
    Searched refs:DownhillSolver (Results 1 - 3 of 3) sorted by null

  /external/opencv3/modules/core/include/opencv2/core/
optim.hpp 145 @note DownhillSolver is a derivative of the abstract interface
155 class CV_EXPORTS DownhillSolver : public MinProblemSolver
162 @see DownhillSolver::setInitStep
168 Step, together with initial point (givin in DownhillSolver::minimize) are two `n`-dimensional
182 /** @brief This function returns the reference to the ready-to-use DownhillSolver object.
186 the only sensible ones, MinProblemSolver::setFunction() and DownhillSolver::setInitStep()
189 and call the MinProblemSolver::setFunction() and DownhillSolver::setInitStep()) are absolutely
198 static Ptr<DownhillSolver> create(const Ptr<MinProblemSolver::Function>& f=Ptr<MinProblemSolver::Function>(),
  /external/opencv3/modules/core/test/
test_downhill_simplex.cpp 46 static void mytest(cv::Ptr<cv::DownhillSolver> solver,cv::Ptr<cv::MinProblemSolver::Function> ptr_F,cv::Mat& x,cv::Mat& step,
84 cv::Ptr<cv::DownhillSolver> solver=cv::DownhillSolver::create();
  /external/opencv3/modules/core/src/
downhill_simplex.cpp 92 void test(Ptr<optim::DownhillSolver> MinProblemSolver, Ptr<optim::MinProblemSolver::Function> ptr_F, Mat &P, Mat &step)
124 Ptr<optim::DownhillSolver> MinProblemSolver = optim::createDownhillSolver();
143 class DownhillSolverImpl : public DownhillSolver
455 Ptr<DownhillSolver> DownhillSolver::create( const Ptr<MinProblemSolver::Function>& f,
458 Ptr<DownhillSolver> DS = makePtr<DownhillSolverImpl>();

Completed in 101 milliseconds