public sealed class NormalizedVertex : IMessage<NormalizedVertex>, IEquatable<NormalizedVertex>, IDeepCloneable<NormalizedVertex>, IBufferMessage, IMessage
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.
Implements
IMessage<NormalizedVertex>, IEquatable<NormalizedVertex>, IDeepCloneable<NormalizedVertex>, IBufferMessage, IMessageNamespace
Google.Cloud.Vision.V1Assembly
Google.Cloud.Vision.V1.dll
Constructors
NormalizedVertex()
public NormalizedVertex()
NormalizedVertex(NormalizedVertex)
public NormalizedVertex(NormalizedVertex other)
Parameter | |
---|---|
Name | Description |
other | NormalizedVertex |
Properties
X
public float X { get; set; }
X coordinate.
Property Value | |
---|---|
Type | Description |
Single |
Y
public float Y { get; set; }
Y coordinate.
Property Value | |
---|---|
Type | Description |
Single |