Show / Hide Table of Contents

Class GoogleCloudVisionV1p1beta1Position

A 3D position in the image, used primarily for Face detection landmarks. A valid Position must have both x and y coordinates. The position coordinates are in the same scale as the original image.

Inheritance
object
GoogleCloudVisionV1p1beta1Position
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Vision.v1p1beta1.Data
Assembly: Google.Apis.Vision.v1p1beta1.dll
Syntax
public class GoogleCloudVisionV1p1beta1Position : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

X

X coordinate.

Declaration
[JsonProperty("x")]
public virtual float? X { get; set; }
Property Value
Type Description
float?

Y

Y coordinate.

Declaration
[JsonProperty("y")]
public virtual float? Y { get; set; }
Property Value
Type Description
float?

Z

Z coordinate (or depth).

Declaration
[JsonProperty("z")]
public virtual float? Z { get; set; }
Property Value
Type Description
float?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX