Class ObjectDetector
Definition
- Namespace:
- Tizen.Multimedia.Vision
- Assembly:
- Tizen.Multimedia.Vision.dll
Provides the ability to detect objects and get its locations on image source using inference engine.
C#
Copy
public static class ObjectDetector
- Inheritance
-
objectObject
Detector
Methods
View Source
DetectAsync(MediaVisionSource, InferenceModelConfiguration)
Detects objects and gets its locations on the source image using inference engine set in config
.
Each time when DetectAsync is called, a set of the detected objects at the media source are received asynchronously.
Declaration
C#
Copy
public static Task<IEnumerable<ObjectDetectionResult>> DetectAsync(MediaVisionSource source, InferenceModelConfiguration config)
Parameters
Type | Name | Description |
---|---|---|
Media |
source | The source of the media where faces will be detected. |
Inference |
config | The engine's configuration that will be used for detecting. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<TResult><System.Collections.Generic.IEnumerable<T><Object |
A task that represents the asynchronous detect operation. |
Exceptions
Type | Condition |
---|---|
System. |
|
System. |
Internal error. |
System. |
The feature is not supported. |
System. |
The caller has no required privilege. |