Click or drag to resize

SolveLPResult Enumeration

return codes for cv::solveLP() function

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public enum SolveLPResult
Members
  Member nameValueDescription
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)
Single0 there is only one maximum for target function
Multi1 there are multiple maxima for target function - the arbitrary one is returned
See Also