CvInvokeGroupRectangles Method (VectorOfRect, VectorOfInt, VectorOfDouble, Int32, Double) |
http://www.emgu.com
Groups the object candidate rectangles.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static void GroupRectangles(
VectorOfRect rectList,
VectorOfInt rejectLevels,
VectorOfDouble levelWeights,
int groupThreshold,
double eps = 0.2
)
Public Shared Sub GroupRectangles (
rectList As VectorOfRect,
rejectLevels As VectorOfInt,
levelWeights As VectorOfDouble,
groupThreshold As Integer,
Optional eps As Double = 0.2
)
public:
static void GroupRectangles(
VectorOfRect^ rectList,
VectorOfInt^ rejectLevels,
VectorOfDouble^ levelWeights,
int groupThreshold,
double eps = 0.2
)
static member GroupRectangles :
rectList : VectorOfRect *
rejectLevels : VectorOfInt *
levelWeights : VectorOfDouble *
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. - rejectLevels
- Type: Emgu.CV.UtilVectorOfInt
reject levels - levelWeights
- Type: Emgu.CV.UtilVectorOfDouble
level 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