CocoSsdMobilenetRecognize Method |
https://www.emgu.com
Perform Coco Ssd Mobilenet detection
Namespace:
Emgu.TF.Lite.Models
Assembly:
Emgu.TF.Lite.Models (in Emgu.TF.Lite.Models.dll) Version: 2.19.0.1709+574f567263f3c76bb77304b9eeb79ab6660ba101
Syntaxpublic CocoSsdMobilenetRecognitionResult[] Recognize(
string imageFile,
float scoreThreshold = 0f
)
Public Function Recognize (
imageFile As String,
Optional scoreThreshold As Single = 0F
) As CocoSsdMobilenetRecognitionResult()
public:
array<CocoSsdMobilenetRecognitionResult^>^ Recognize(
String^ imageFile,
float scoreThreshold = 0f
)
member Recognize :
imageFile : string *
?scoreThreshold : float32
(* Defaults:
let _scoreThreshold = defaultArg scoreThreshold 0f
*)
-> CocoSsdMobilenetRecognitionResult[]
Parameters
- imageFile
- Type: SystemString
The image file where we will ran the network through - scoreThreshold (Optional)
- Type: SystemSingle
If non-positive, will return all results. If positive, we will only return results with score larger than this value
Return Value
Type:
CocoSsdMobilenetRecognitionResultThe result of the detection.
See Also