Class GoogleCloudAiplatformV1SchemaVertex
Represents a 2D point in the image. Vertex coordinates are normalized to be relative to the original image dimensions and range from 0 to 1. The origin of the coordinate system (0,0) is the top-left corner of the image. x increases to the right, and y increases to the bottom.
Implements
Inherited Members
Namespace: Google.Apis.Aiplatform.v1.Data
Assembly: Google.Apis.Aiplatform.v1.dll
Syntax
public class GoogleCloudAiplatformV1SchemaVertex : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
X
X coordinate of the vertex, normalized to [0.0, 1.0].
Declaration
[JsonProperty("x")]
public virtual double? X { get; set; }
Property Value
| Type | Description |
|---|---|
| double? |
Y
Y coordinate of the vertex, normalized to [0.0, 1.0].
Declaration
[JsonProperty("y")]
public virtual double? Y { get; set; }
Property Value
| Type | Description |
|---|---|
| double? |