Class NormalizedVertex.Builder (2.83.0)

public static final class NormalizedVertex.Builder extends GeneratedMessage.Builder<NormalizedVertex.Builder> implements NormalizedVertexOrBuilder

A vertex represents a 2D point in the image. The normalized vertex coordinates are between 0 to 1 fractions relative to the original plane (image, video). E.g. if the plane (e.g. whole image) would have size 10 x 20 then a point with normalized coordinates (0.1, 0.3) would be at the position (1, 6) on that plane.

Protobuf type google.cloud.automl.v1beta1.NormalizedVertex

Static Methods

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
Type Description
Descriptor

Methods

build()

public NormalizedVertex build()
Returns
Type Description
NormalizedVertex

buildPartial()

public NormalizedVertex buildPartial()
Returns
Type Description
NormalizedVertex

clear()

public NormalizedVertex.Builder clear()
Returns
Type Description
NormalizedVertex.Builder
Overrides

clearX()

public NormalizedVertex.Builder clearX()

Required. Horizontal coordinate.

float x = 1;

Returns
Type Description
NormalizedVertex.Builder

This builder for chaining.

clearY()

public NormalizedVertex.Builder clearY()

Required. Vertical coordinate.

float y = 2;

Returns
Type Description
NormalizedVertex.Builder

This builder for chaining.

getDefaultInstanceForType()

public NormalizedVertex getDefaultInstanceForType()
Returns
Type Description
NormalizedVertex

getDescriptorForType()

public Descriptors.Descriptor getDescriptorForType()
Returns
Type Description
Descriptor
Overrides

getX()

public float getX()

Required. Horizontal coordinate.

float x = 1;

Returns
Type Description
float

The x.

getY()

public float getY()

Required. Vertical coordinate.

float y = 2;

Returns
Type Description
float

The y.

internalGetFieldAccessorTable()

protected GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Type Description
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
Type Description
boolean
Overrides

mergeFrom(NormalizedVertex other)

public NormalizedVertex.Builder mergeFrom(NormalizedVertex other)
Parameter
Name Description
other NormalizedVertex
Returns
Type Description
NormalizedVertex.Builder

mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public NormalizedVertex.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input CodedInputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
NormalizedVertex.Builder
Overrides
Exceptions
Type Description
IOException

mergeFrom(Message other)

public NormalizedVertex.Builder mergeFrom(Message other)
Parameter
Name Description
other Message
Returns
Type Description
NormalizedVertex.Builder
Overrides

setX(float value)

public NormalizedVertex.Builder setX(float value)

Required. Horizontal coordinate.

float x = 1;

Parameter
Name Description
value float

The x to set.

Returns
Type Description
NormalizedVertex.Builder

This builder for chaining.

setY(float value)

public NormalizedVertex.Builder setY(float value)

Required. Vertical coordinate.

float y = 2;

Parameter
Name Description
value float

The y to set.

Returns
Type Description
NormalizedVertex.Builder

This builder for chaining.