Interface NormalizedBoundingBoxOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
NormalizedBoundingBox
,NormalizedBoundingBox.Builder
public interface NormalizedBoundingBoxOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description float
getBottom()
Bottom Y coordinate.float
getLeft()
Left X coordinate.float
getRight()
Right X coordinate.float
getTop()
Top Y coordinate.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLeft
float getLeft()
Left X coordinate.
float left = 1;
- Returns:
- The left.
-
getTop
float getTop()
Top Y coordinate.
float top = 2;
- Returns:
- The top.
-
getRight
float getRight()
Right X coordinate.
float right = 3;
- Returns:
- The right.
-
getBottom
float getBottom()
Bottom Y coordinate.
float bottom = 4;
- Returns:
- The bottom.
-
-