Class NormalizedVertex
An (x, y) coordinate in the image with dimensions normalized from zero to one. The origin is at top left, with the positive x-axis pointing right and the positive y-axis pointing down. The bottom right corner is at (1, 1).
Inherited Members
Namespace: Oci.AivisionService.Models
Assembly: OCI.DotNetSDK.Aivision.dll
Syntax
public class NormalizedVertex
Properties
X
Declaration
[Required(ErrorMessage = "X is required.")]
[JsonProperty(PropertyName = "x")]
public double X { get; set; }
Property Value
Type | Description |
---|---|
double | The X-axis normalized coordinate. |
Remarks
Required
Y
Declaration
[Required(ErrorMessage = "Y is required.")]
[JsonProperty(PropertyName = "y")]
public double Y { get; set; }
Property Value
Type | Description |
---|---|
double | The Y-axis normalized coordinate. |
Remarks
Required