Click or drag to resize

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)
Syntax
public static void GroupRectangles(
	VectorOfRect rectList,
	int groupThreshold,
	double eps,
	VectorOfInt weights,
	VectorOfDouble levelWeights
)

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