SolveLPResult Enumeration
|
return codes for cv::solveLP() function
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic enum SolveLPResult
Public Enumeration SolveLPResult
public enum class SolveLPResult
OpenCvSharp.SolveLPResult = function();
OpenCvSharp.SolveLPResult.createEnum('OpenCvSharp.SolveLPResult', false);
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