Class InferenceFaceDetector
Definition
- Namespace:
- Tizen.Multimedia.Vision
- Assembly:
- Tizen.Multimedia.Vision.dll
Provides the ability to detect faces.
C#
Copy
public class InferenceFaceDetector : IDisposable
- Inheritance
-
objectInference
Face Detector
- Implements
-
System.
IDisposable
Constructors
Declaration
C#
Copy
public InferenceFaceDetector()
Exceptions
Type | Condition |
---|---|
System. |
The required features are not supported. |
Methods
Declaration
C#
Copy
public void Dispose()
Declaration
C#
Copy
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
bool | disposing | true to release both managed and unmanaged resources; false to release only unmanaged resources. |
Declaration
C#
Copy
protected ~InferenceFaceDetector()
GetRequestResults()
Gets the bounding boxes as a result of Request
Declaration
C#
Copy
public InferenceFaceDetectorResult GetRequestResults()
Returns
Type | Description |
---|---|
Inference |
The bounding boxes of detected face. |
Remarks
If there's no detected face, Bounding
This method uses about twice as much memory as Inference(Media
Exceptions
Type | Condition |
---|---|
System. |
The InferenceFaceDetector already has been disposed. |
See Also
Declaration
C#
Copy
public InferenceFaceDetectorResult Inference(MediaVisionSource source)
Parameters
Type | Name | Description |
---|---|---|
Media |
source | The image data to detect faces. |
Returns
Type | Description |
---|---|
Inference |
The BoundingBoxes of detected face. |
Remarks
Bounding
Exceptions
Type | Condition |
---|---|
System. |
The InferenceFaceDetector already has been disposed. |
System. |
|
Declaration
C#
Copy
public Task<InferenceFaceDetectorResult> InferenceAsync(MediaVisionSource source)
Parameters
Type | Name | Description |
---|---|---|
Media |
source | The image data to detect faces. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<TResult><Inference |
Remarks
Bounding
This method uses about twice as much memory as Inference(Media
Exceptions
Type | Condition |
---|---|
System. |
The InferenceFaceDetector already has been disposed. |
System. |
|
RequestInference(MediaVisionSource)
Requests detecting faces to get their bounding boxes asynchronously.
Declaration
C#
Copy
public ulong RequestInference(MediaVisionSource source)
Parameters
Type | Name | Description |
---|---|---|
Media |
source | The image data to detect faces. |
Returns
Type | Description |
---|---|
ulong | The request ID that indicates the order of requests. |
Remarks
This function does not guarantee that inference is done when this method returns. The user can get the result by using Get
If the user calls this method again before the previous one is finished internally, the call will be ignored.
Bounding
Note that this method could use about twice as much memory as Inference(Media
Exceptions
Type | Condition |
---|---|
System. |
The InferenceFaceDetector already has been disposed. |
System. |
|