Class FaceDetector
Definition
- Namespace:
- Tizen.Multimedia.Vision
- Assembly:
- Tizen.Multimedia.Vision.dll
Provides the ability to detect faces on image sources.
C#
Copy
public static class FaceDetector
- Inheritance
-
objectFace
Detector
Remarks
If you want to use face detection based on inference engine(Inference
Methods
DetectAsync(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
C#
Copy
public static Task<Rectangle[]> DetectAsync(MediaVisionSource source, FaceDetectionConfiguration config)
Parameters
Type | Name | Description |
---|---|---|
Media |
source | The source of the media where faces will be detected. |
Face |
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. |
Remarks
If you want to use face detection based on inference engine(Inference
Exceptions
Type | Condition |
---|---|
System. |
|
System. |
The feature is not supported. |
DetectAsync(MediaVisionSource, InferenceModelConfiguration)
Detects faces on the source image using inference engine set in config
.
Each time when DetectAsync is called, a set of the detected faces at the media source are received asynchronously.
Declaration
C#
Copy
public static Task<IEnumerable<FaceDetectionResult>> 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><Face |
A task that represents the asynchronous detect operation. |
Remarks
If there's no detected face, empty collection will be returned.
Exceptions
Type | Condition |
---|---|
System. |
|
System. |
Internal error. |
System. |
The feature is not supported. |
System. |
The caller has no required privilege. |
See Also
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
C#
Copy
public static Task<Rectangle[]> DetectAsync(MediaVisionSource source)
Parameters
Type | Name | Description |
---|---|---|
Media |
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. |
Remarks
If you want to use face detection based on inference engine(Inference
Exceptions
Type | Condition |
---|---|
System. |
|
System. |
The feature is not supported. |