Show / Hide Table of Contents

Class ObjectProperties

Properties associated with the object.

Inheritance
object
ObjectProperties
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AivisionService.Models
Assembly: OCI.DotNetSDK.Aivision.dll
Syntax
public class ObjectProperties

Properties

Embeddings

Declaration
[JsonProperty(PropertyName = "embeddings")]
public List<float> Embeddings { get; set; }
Property Value
Type Description
List<float>

The facial feature vectors of detected faces.

Landmarks

Declaration
[JsonProperty(PropertyName = "landmarks")]
public List<Landmark> Landmarks { get; set; }
Property Value
Type Description
List<Landmark>

Face landmarks.

QualityScore

Declaration
[JsonProperty(PropertyName = "qualityScore")]
public float? QualityScore { get; set; }
Property Value
Type Description
float?

The quality score of the face detected, between 0 and 1.

In this article
Back to top