Show / Hide Table of Contents

Class Vertex

A vertex represents a 2D point in the image. NOTE: the vertex coordinates are in the same scale as the original image.

Inheritance
System.Object
Vertex
Implements
IMessage<Vertex>
System.IEquatable<Vertex>
IDeepCloneable<Vertex>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DocumentAI.V1Beta2
Assembly: Google.Cloud.DocumentAI.V1Beta2.dll
Syntax
public sealed class Vertex : IMessage<Vertex>, IEquatable<Vertex>, IDeepCloneable<Vertex>, IBufferMessage, IMessage

Constructors

Vertex()

Declaration
public Vertex()

Vertex(Vertex)

Declaration
public Vertex(Vertex other)
Parameters
Type Name Description
Vertex other

Properties

X

X coordinate.

Declaration
public int X { get; set; }
Property Value
Type Description
System.Int32

Y

Y coordinate.

Declaration
public int Y { get; set; }
Property Value
Type Description
System.Int32
Back to top