| SolveLPResult Enumeration |
return codes for cv::solveLP() function
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public enum SolveLPResult
Public Enumeration SolveLPResult
public enum class SolveLPResult
Members
| Member name | Value | Description |
---|
| Unbounded | -2 |
problem is unbounded (target function can achieve arbitrary high values)
|
| Unfeasible | -1 |
problem is unfeasible (there are no points that satisfy all the constraints imposed)
|
| Single | 0 |
there is only one maximum for target function
|
| Multi | 1 |
there are multiple maxima for target function - the arbitrary one is returned
|
See Also