Click or drag to resize
Accord.NET (logo)

GroupMatching Constructor

Creates a new GroupMatching object.

Namespace:  Accord.Vision
Assembly:  Accord.Vision (in Accord.Vision.dll) Version: 3.8.0
Syntax
public GroupMatching(
	int minimumNeighbors = 2,
	double threshold = 0.2
)
Request Example View Source

Parameters

minimumNeighbors (Optional)
Type: SystemInt32
The minimum number of neighbors needed to keep a detection. If a rectangle has less than this minimum number, it will be discarded as a false positive.
threshold (Optional)
Type: SystemDouble
The minimum distance threshold to consider two rectangles as neighbors. Default is 0.2.
See Also