Class FaceRecognitionResult

Definition

Namespace:
Tizen.Multimedia.Vision
Assembly:
Tizen.Multimedia.Vision.dll
API Level:
4

Represents the result of FaceRecognizer operations.

C#
Copy
public class FaceRecognitionResult
Inheritance
System.Object
FaceRecognitionResult

Properties

View Source

Area

Gets the location of the recognized face.

Declaration
C#
Copy
public Rectangle? Area { get; }
Property Value
Type Description
System.Nullable<Rectangle>
API Level: 4
View Source

Confidence

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
C#
Copy
public double Confidence { get; }
Property Value
Type Description
System.Double
API Level: 4
View Source

Label

Gets the label of the recognized face.

Declaration
C#
Copy
public int Label { get; }
Property Value
Type Description
Int32
API Level: 4
View Source

Success

Gets the value indicating the recognition is successful.

Declaration
C#
Copy
public bool Success { get; }
Property Value
Type Description
Boolean
API Level: 4