Click or drag to resize

CvInvokeGroupRectangles Method (VectorOfRect, 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)
Syntax
public static void GroupRectangles(
	VectorOfRect rectList,
	int groupThreshold,
	double eps = 0.2
)

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 (Optional)
Type: SystemDouble
Relative difference between sides of the rectangles to merge them into a group.
See Also