OpenCV  4.9.0-dev
Open Source Computer Vision
Loading...
Searching...
No Matches
Classes | Namespaces | Enumerations | Functions
optim.hpp File Reference
#include "opencv2/core.hpp"
Include dependency graph for optim.hpp:
This graph shows which files directly or indirectly include this file:

Classes

class  cv::ConjGradSolver
 This class is used to perform the non-linear non-constrained minimization of a function with known gradient,. More...
 
class  cv::DownhillSolver
 This class is used to perform the non-linear non-constrained minimization of a function,. More...
 
class  cv::MinProblemSolver::Function
 Represents function being optimized. More...
 
class  cv::MinProblemSolver
 Basic interface for all solvers. More...
 

Namespaces

namespace  cv
 "black box" representation of the file storage associated with a file on disk.
 

Enumerations

enum  cv::SolveLPResult {
  cv::SOLVELP_LOST = -3 ,
  cv::SOLVELP_UNBOUNDED = -2 ,
  cv::SOLVELP_UNFEASIBLE = -1 ,
  cv::SOLVELP_SINGLE = 0 ,
  cv::SOLVELP_MULTI = 1
}
 return codes for cv::solveLP() function More...
 

Functions

int cv::solveLP (InputArray Func, InputArray Constr, OutputArray z)
 
int cv::solveLP (InputArray Func, InputArray Constr, OutputArray z, double constr_eps)
 Solve given (non-integer) linear programming problem using the Simplex Algorithm (Simplex Method).