Show / Hide Table of Contents

Class NormalizedVertex

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
NormalizedVertex
Implements
IMessage<NormalizedVertex>
System.IEquatable<NormalizedVertex>
IDeepCloneable<NormalizedVertex>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DataLabeling.V1Beta1
Assembly: Google.Cloud.DataLabeling.V1Beta1.dll
Syntax
public sealed class NormalizedVertex : IMessage<NormalizedVertex>, IEquatable<NormalizedVertex>, IDeepCloneable<NormalizedVertex>, IBufferMessage, IMessage

Constructors

NormalizedVertex()

Declaration
public NormalizedVertex()

NormalizedVertex(NormalizedVertex)

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

Properties

X

X coordinate.

Declaration
public float X { get; set; }
Property Value
Type Description
System.Single

Y

Y coordinate.

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