CvInvokeGroupRectangles Method (VectorOfRect, Int32, Double, VectorOfInt, VectorOfDouble) |
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,
int groupThreshold,
double eps,
VectorOfInt weights,
VectorOfDouble levelWeights
)
Public Shared Sub GroupRectangles (
rectList As VectorOfRect,
groupThreshold As Integer,
eps As Double,
weights As VectorOfInt,
levelWeights As VectorOfDouble
)
public:
static void GroupRectangles(
VectorOfRect^ rectList,
int groupThreshold,
double eps,
VectorOfInt^ weights,
VectorOfDouble^ levelWeights
)
static member GroupRectangles :
rectList : VectorOfRect *
groupThreshold : int *
eps : float *
weights : VectorOfInt *
levelWeights : VectorOfDouble -> unit
Parameters
- rectList
- Type: Emgu.CV.UtilVectorOfRect
Input/output vector of rectangles. Output vector includes retained and grouped rectangles. - groupThreshold
- Type: SystemInt32
Minimum possible number of rectangles minus 1. The threshold is used in a group of rectangles to retain it. - eps
- Type: SystemDouble
Relative difference between sides of the rectangles to merge them into a group. - weights
- Type: Emgu.CV.UtilVectorOfInt
weights - levelWeights
- Type: Emgu.CV.UtilVectorOfDouble
level weights
See Also