Class FacialLandmarkDetector
Definition
- Namespace:
- Tizen.Multimedia.Vision
- Assembly:
- Tizen.Multimedia.Vision.dll
- API Level:
- 6
Provides the ability to detect facial landmarks on image source using inference engine.
public static class FacialLandmarkDetector
- Inheritance
-
FacialLandmarkDetector
Methods
View SourceDetectAsync(MediaVisionSource, InferenceModelConfiguration)
Detects facial landmarks on the source image using inference engine set in config
.
Declaration
public static Task<IEnumerable<Point>> DetectAsync(MediaVisionSource source, InferenceModelConfiguration config)
Parameters
Type | Name | Description |
---|---|---|
MediaVisionSource | source | The source of the media where faces will be detected. |
InferenceModelConfiguration | config | The engine's configuration that will be used for detecting. |
Returns
Type | Description |
---|---|
Task<IEnumerable<Point>> | A task that represents the asynchronous detect operation. |
Remarks
To set region-of-interest area in source image, please set Roi. If not set, full image area will be used to detect facial landmark.
Exceptions
Type | Condition |
---|---|
ArgumentNullException |
|
InvalidOperationException | Internal error. |
NotSupportedException | The feature is not supported. |
UnauthorizedAccessException | The caller has no required privilege. |