Class FaceDetector
Definition
- Namespace:
- Tizen.Multimedia.Vision
- Assembly:
- Tizen.Multimedia.Vision.dll
Provides the ability to detect faces on image sources.
public static class FaceDetector
- Inheritance
-
objectFaceDetector
Methods
View SourceDetectAsync(MediaVisionSource, FaceDetectionConfiguration)
Detects faces on the source.
Each time when DetectAsync is called, a set of the detected faces at the media source are received asynchronously.
Declaration
public static Task<Rectangle[]> DetectAsync(MediaVisionSource source, FaceDetectionConfiguration config)
Parameters
Type | Name | Description |
---|---|---|
MediaVisionSource | source | The source of the media where faces will be detected. |
FaceDetectionConfiguration | config | The configuration of engine will be used for detecting. This value can be null. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<TResult><Rectangle[]> | A task that represents the asynchronous detect operation. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|
System.NotSupportedException | The feature is not supported. |
DetectAsync(MediaVisionSource)
Detects faces on the source.
Each time when DetectAsync is called, a set of the detected faces at the media source are received asynchronously.
Declaration
public static Task<Rectangle[]> DetectAsync(MediaVisionSource source)
Parameters
Type | Name | Description |
---|---|---|
MediaVisionSource | source | The source of the media where faces will be detected. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<TResult><Rectangle[]> | A task that represents the asynchronous detect operation. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|
System.NotSupportedException | The feature is not supported. |