LatentSvmDetectorDetect Method |
http://www.emgu.com
Find rectangular regions in the given image that are likely to contain objects and corresponding confidence levels
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic MCvObjectDetection[] Detect(
Mat image,
float overlapThreshold = 0.5f
)
Public Function Detect (
image As Mat,
Optional overlapThreshold As Single = 0.5F
) As MCvObjectDetection()
public:
array<MCvObjectDetection>^ Detect(
Mat^ image,
float overlapThreshold = 0.5f
)
member Detect :
image : Mat *
?overlapThreshold : float32
(* Defaults:
let _overlapThreshold = defaultArg overlapThreshold 0.5f
*)
-> MCvObjectDetection[]
Parameters
- image
- Type: Emgu.CVMat
The image to detect objects in - overlapThreshold (Optional)
- Type: SystemSingle
Threshold for the non-maximum suppression algorithm
Return Value
Type:
MCvObjectDetectionArray of detected objects
See Also