Class Face
The detected face.
Inherited Members
Namespace: Oci.AivisionService.Models
Assembly: OCI.DotNetSDK.Aivision.dll
Syntax
public class Face
Properties
BoundingPolygon
Declaration
[Required(ErrorMessage = "BoundingPolygon is required.")]
[JsonProperty(PropertyName = "boundingPolygon")]
public BoundingPolygon BoundingPolygon { get; set; }
Property Value
Type | Description |
---|---|
BoundingPolygon |
Remarks
Required
Confidence
Declaration
[Required(ErrorMessage = "Confidence is required.")]
[JsonProperty(PropertyName = "confidence")]
public float? Confidence { get; set; }
Property Value
Type | Description |
---|---|
float? | The confidence score, between 0 and 1. |
Remarks
Required
Landmarks
Declaration
[JsonProperty(PropertyName = "landmarks")]
public List<Landmark> Landmarks { get; set; }
Property Value
Type | Description |
---|---|
List<Landmark> | A point of interest within a face. |
QualityScore
Declaration
[Required(ErrorMessage = "QualityScore is required.")]
[JsonProperty(PropertyName = "qualityScore")]
public float? QualityScore { get; set; }
Property Value
Type | Description |
---|---|
float? | The quality score of the face detected, between 0 and 1. |
Remarks
Required