Show / Hide Table of Contents

Class Landmark

The landmark on the face.

Inheritance
object
Landmark
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 Landmark

Properties

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Landmark.TypeEnum? Type { get; set; }
Property Value
Type Description
Landmark.TypeEnum?

The face landmark type

Remarks

Required

X

Declaration
[Required(ErrorMessage = "X is required.")]
[JsonProperty(PropertyName = "x")]
public float? X { get; set; }
Property Value
Type Description
float?

The X-axis normalized coordinate.

Remarks

Required

Y

Declaration
[Required(ErrorMessage = "Y is required.")]
[JsonProperty(PropertyName = "y")]
public float? Y { get; set; }
Property Value
Type Description
float?

The Y-axis normalized coordinate.

Remarks

Required

In this article
Back to top