|
ObjectDetectorSearchMode Enumeration
|
Object detector options for the search procedure.
Namespace:
Accord.Vision.Detection
Assembly:
Accord.Vision (in Accord.Vision.dll) Version: 3.8.0
Syntax public enum ObjectDetectorSearchMode
Public Enumeration ObjectDetectorSearchMode
Members
| Member name | Value | Description |
---|
| Default | 0 |
Entire image will be scanned.
|
| Single | 1 |
Only a single object will be retrieved.
|
| NoOverlap | 2 |
If a object has already been detected inside an area,
it will not be scanned twice for inner or overlapping
objects, saving computation time.
|
| Average | 3 |
If several objects are located within one another,
they will be averaged. Additionally, objects which
have not been detected sufficient times may be dropped
by setting Suppression.
|
See Also