Classes | |
class | cv::MinProblemSolver |
Basic interface for all solvers. More... | |
class | cv::DownhillSolver |
This class is used to perform the non-linear non-constrained minimization of a function,. More... | |
class | cv::ConjGradSolver |
This class is used to perform the non-linear non-constrained minimization of a function with known gradient,. More... | |
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 | |
CV_EXPORTS_W 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). | |
CV_EXPORTS_W int | cv::solveLP (InputArray Func, InputArray Constr, OutputArray z) |
The algorithms in this section minimize or maximize function value within specified constraints or without any constraints.
enum cv::SolveLPResult |
return codes for cv::solveLP() function
CV_EXPORTS_W int cv::solveLP | ( | InputArray | Func, |
InputArray | Constr, | ||
OutputArray | z | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
CV_EXPORTS_W 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).
What we mean here by "linear programming problem" (or LP problem, for short) can be formulated as:
Where 1
-by-n
row-vector, m
-by-n
matrix, m
-by-1
column vector and n
-by-1
column vector, which satisfies the constraints.
Simplex algorithm is one of many algorithms that are designed to handle this sort of problems efficiently. Although it is not optimal in theoretical sense (there exist algorithms that can solve any problem written as above in polynomial time, while simplex method degenerates to exponential time for some special cases), it is well-studied, easy to implement and is shown to work well for real-life purposes.
The particular implementation is taken almost verbatim from Introduction to Algorithms, third edition by T. H. Cormen, C. E. Leiserson, R. L. Rivest and Clifford Stein. In particular, the Bland's rule http://en.wikipedia.org/wiki/Bland%27s_rule is used to prevent cycling.
Func | This row-vector corresponds to ![]() ![]() |
Constr | m -by-n+1 matrix, whose rightmost column corresponds to ![]() ![]() |
z | The solution will be returned here as a column-vector - it corresponds to ![]() |
constr_eps | allowed numeric disparity for constraints |