Click or drag to resize

DnnInvokeNMSBoxes Method

http://www.emgu.com
Performs non maximum suppression given boxes and corresponding scores.

Namespace:  Emgu.CV.Dnn
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntax
public static void NMSBoxes(
	VectorOfRect bboxes,
	VectorOfFloat scores,
	float scoreThreshold,
	float nmsThreshold,
	VectorOfInt indices,
	float eta = 1f,
	int topK = 0
)

Parameters

bboxes
Type: Emgu.CV.UtilVectorOfRect
A set of bounding boxes to apply NMS.
scores
Type: Emgu.CV.UtilVectorOfFloat
A set of corresponding confidences.
scoreThreshold
Type: SystemSingle
A threshold used to filter boxes by score.
nmsThreshold
Type: SystemSingle
A threshold used in non maximum suppression.
indices
Type: Emgu.CV.UtilVectorOfInt
The kept indices of bboxes after NMS.
eta (Optional)
Type: SystemSingle
A coefficient in adaptive threshold
topK (Optional)
Type: SystemInt32
If >0, keep at most top_k picked indices.
See Also