Show / Hide Table of Contents

Class GoogleCloudVisionV1p2beta1NormalizedVertex

A vertex represents a 2D point in the image. NOTE: the normalized vertex coordinates are relative to the original image and range from 0 to 1.

Inheritance
System.Object
GoogleCloudVisionV1p2beta1NormalizedVertex
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Vision.v1.Data
Assembly: Google.Apis.Vision.v1.dll
Syntax
public class GoogleCloudVisionV1p2beta1NormalizedVertex : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

X

X coordinate.

Declaration
[JsonProperty("x")]
public virtual float? X { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

Y

Y coordinate.

Declaration
[JsonProperty("y")]
public virtual float? Y { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

Implements

IDirectResponseSchema
In This Article
Back to top