Class FaceRecognitionResult
Definition
- Namespace:
- Tizen.Multimedia.Vision
- Assembly:
- Tizen.Multimedia.Vision.dll
- API Level:
- 4
Represents the result of FaceRecognizer operations.
public class FaceRecognitionResult
- Inheritance
-
FaceRecognitionResult
Properties
View SourceArea
Gets the location of the recognized face.
Declaration
public Rectangle? Area { get; }
Property Value
Type | Description |
---|---|
Nullable<Rectangle> |
API Level: 4
View SourceConfidence
The confidence of the recognition model that face has been recognized correctly (value from 0.0 to 1.0). No faces were recognized if confidence was 0.0. When model has been learned on large amount of examples, threshold for this value can be high (0.85-0.95). If model was learned for small amount of examples, then threshold can be reduced (0.5-0.85).
Declaration
public double Confidence { get; }
Property Value
Type | Description |
---|---|
Double |
API Level: 4
View SourceLabel
Gets the label of the recognized face.
Declaration
public int Label { get; }
Property Value
Type | Description |
---|---|
Int32 |
API Level: 4
View SourceSuccess
Gets the value indicating the recognition is successful.
Declaration
public bool Success { get; }
Property Value
Type | Description |
---|---|
Boolean |