CvInvokeGroupRectangles Method (VectorOfRect, VectorOfInt, Int32, Double) |
http://www.emgu.com
Groups the object candidate rectangles.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic static void GroupRectangles(
VectorOfRect rectList,
VectorOfInt weights,
int groupThreshold,
double eps = 0.2
)
Public Shared Sub GroupRectangles (
rectList As VectorOfRect,
weights As VectorOfInt,
groupThreshold As Integer,
Optional eps As Double = 0.2
)
public:
static void GroupRectangles(
VectorOfRect^ rectList,
VectorOfInt^ weights,
int groupThreshold,
double eps = 0.2
)
static member GroupRectangles :
rectList : VectorOfRect *
weights : VectorOfInt *
groupThreshold : int *
?eps : float
(* Defaults:
let _eps = defaultArg eps 0.2
*)
-> unit
Parameters
- rectList
- Type: Emgu.CV.UtilVectorOfRect
Input/output vector of rectangles. Output vector includes retained and grouped rectangles. - weights
- Type: Emgu.CV.UtilVectorOfInt
Weights - groupThreshold
- Type: SystemInt32
Minimum possible number of rectangles minus 1. The threshold is used in a group of rectangles to retain it. - eps (Optional)
- Type: SystemDouble
Relative difference between sides of the rectangles to merge them into a group.
See Also