Cv2GroupRectangles Method (IListRect, Int32, Double, Int32, Double)
|
Groups the object candidate rectangles.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static void GroupRectangles(
IList<Rect> rectList,
out int[] rejectLevels,
out double[] levelWeights,
int groupThreshold,
double eps = 0.2
)
Public Shared Sub GroupRectangles (
rectList As IList(Of Rect),
<OutAttribute> ByRef rejectLevels As Integer(),
<OutAttribute> ByRef levelWeights As Double(),
groupThreshold As Integer,
Optional eps As Double = 0.2
)
public:
static void GroupRectangles(
IList<Rect>^ rectList,
[OutAttribute] array<int>^% rejectLevels,
[OutAttribute] array<double>^% levelWeights,
int groupThreshold,
double eps = 0.2
)
static member GroupRectangles :
rectList : IList<Rect> *
rejectLevels : int[] byref *
levelWeights : float[] byref *
groupThreshold : int *
?eps : float
(* Defaults:
let _eps = defaultArg eps 0.2
*)
-> unit
OpenCvSharp.Cv2.GroupRectangles = function(rectList, rejectLevels, levelWeights, groupThreshold, eps);
Parameters
- rectList
- Type: System.Collections.GenericIListRect
- rejectLevels
- Type: SystemInt32
- levelWeights
- Type: SystemDouble
- groupThreshold
- Type: SystemInt32
- eps (Optional)
- Type: SystemDouble
See Also