Class FaceTrackingResult

Definition

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

Represents the result of face tracking operation.

C#
Copy
public class FaceTrackingResult
Inheritance
System.Object
FaceTrackingResult

Properties

View Source

Confidence

The confidence of the tracking model that a new location of the face was determined correctly (value from 0.0 to 1.0). If no location was determined during the last track iteration, then the value is 0.0.

Declaration
C#
Copy
public double Confidence { get; }
Property Value
Type Description
System.Double
API Level: 4
View Source

Region

Gets the region which determines the new position of the tracked face on the source.

Declaration
C#
Copy
public Quadrangle Region { get; }
Property Value
Type Description
Quadrangle
API Level: 4
View Source

Success

Gets the value indicating the tracking is successful.

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