|
GroupMatching Constructor
|
Namespace:
Accord.Vision
Assembly:
Accord.Vision (in Accord.Vision.dll) Version: 3.8.0
Syntax public GroupMatching(
int minimumNeighbors = 2,
double threshold = 0.2
)
Public Sub New (
Optional minimumNeighbors As Integer = 2,
Optional threshold As Double = 0.2
)
Request Example
View SourceParameters
- 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