Show / Hide Table of Contents

Class GoogleCloudVisionV1p4beta1BoundingPoly

A bounding polygon for the detected image annotation.

Inheritance
System.Object
GoogleCloudVisionV1p4beta1BoundingPoly
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 GoogleCloudVisionV1p4beta1BoundingPoly : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

NormalizedVertices

The bounding polygon normalized vertices.

Declaration
[JsonProperty("normalizedVertices")]
public virtual IList<GoogleCloudVisionV1p4beta1NormalizedVertex> NormalizedVertices { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudVisionV1p4beta1NormalizedVertex>

Vertices

The bounding polygon vertices.

Declaration
[JsonProperty("vertices")]
public virtual IList<GoogleCloudVisionV1p4beta1Vertex> Vertices { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudVisionV1p4beta1Vertex>

Implements

IDirectResponseSchema
In This Article
Back to top