Class PersonRecognitionInfo

Definition

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

Represents a result of PersonRecognizer instances.

C#
Copy
public class PersonRecognitionInfo
Inheritance
System.Object
PersonRecognitionInfo

Constructors

View Source

PersonRecognitionInfo(Rectangle, Int32, Double)

Initializes a new instance of the PersonRecognitionInfo class.

Declaration
C#
Copy
public PersonRecognitionInfo(Rectangle area, int label, double confidence)
Parameters
Type Name Description
Rectangle area
Int32 label
System.Double confidence
API Level: 4

Properties

View Source

Area

Gets the rectangular location where person face was recognized.

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

Confidence

Gets the confidence value that correspond to the recognized person.

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

Label

Gets the label that correspond to the recognized person.

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