Interface VideoObjectTrackingPredictionResult.FrameOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
VideoObjectTrackingPredictionResult.Frame
,VideoObjectTrackingPredictionResult.Frame.Builder
- Enclosing class:
- VideoObjectTrackingPredictionResult
public static interface VideoObjectTrackingPredictionResult.FrameOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Duration
getTimeOffset()
A time (frame) of a video in which the object has been detected.com.google.protobuf.DurationOrBuilder
getTimeOffsetOrBuilder()
A time (frame) of a video in which the object has been detected.com.google.protobuf.FloatValue
getXMax()
The rightmost coordinate of the bounding box.com.google.protobuf.FloatValueOrBuilder
getXMaxOrBuilder()
The rightmost coordinate of the bounding box.com.google.protobuf.FloatValue
getXMin()
The leftmost coordinate of the bounding box.com.google.protobuf.FloatValueOrBuilder
getXMinOrBuilder()
The leftmost coordinate of the bounding box.com.google.protobuf.FloatValue
getYMax()
The bottommost coordinate of the bounding box.com.google.protobuf.FloatValueOrBuilder
getYMaxOrBuilder()
The bottommost coordinate of the bounding box.com.google.protobuf.FloatValue
getYMin()
The topmost coordinate of the bounding box.com.google.protobuf.FloatValueOrBuilder
getYMinOrBuilder()
The topmost coordinate of the bounding box.boolean
hasTimeOffset()
A time (frame) of a video in which the object has been detected.boolean
hasXMax()
The rightmost coordinate of the bounding box.boolean
hasXMin()
The leftmost coordinate of the bounding box.boolean
hasYMax()
The bottommost coordinate of the bounding box.boolean
hasYMin()
The topmost coordinate of the bounding box.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasTimeOffset
boolean hasTimeOffset()
A time (frame) of a video in which the object has been detected. Expressed as a number of seconds as measured from the start of the video, with fractions up to a microsecond precision, and with "s" appended at the end.
.google.protobuf.Duration time_offset = 1;
- Returns:
- Whether the timeOffset field is set.
-
getTimeOffset
com.google.protobuf.Duration getTimeOffset()
A time (frame) of a video in which the object has been detected. Expressed as a number of seconds as measured from the start of the video, with fractions up to a microsecond precision, and with "s" appended at the end.
.google.protobuf.Duration time_offset = 1;
- Returns:
- The timeOffset.
-
getTimeOffsetOrBuilder
com.google.protobuf.DurationOrBuilder getTimeOffsetOrBuilder()
A time (frame) of a video in which the object has been detected. Expressed as a number of seconds as measured from the start of the video, with fractions up to a microsecond precision, and with "s" appended at the end.
.google.protobuf.Duration time_offset = 1;
-
hasXMin
boolean hasXMin()
The leftmost coordinate of the bounding box.
.google.protobuf.FloatValue x_min = 2;
- Returns:
- Whether the xMin field is set.
-
getXMin
com.google.protobuf.FloatValue getXMin()
The leftmost coordinate of the bounding box.
.google.protobuf.FloatValue x_min = 2;
- Returns:
- The xMin.
-
getXMinOrBuilder
com.google.protobuf.FloatValueOrBuilder getXMinOrBuilder()
The leftmost coordinate of the bounding box.
.google.protobuf.FloatValue x_min = 2;
-
hasXMax
boolean hasXMax()
The rightmost coordinate of the bounding box.
.google.protobuf.FloatValue x_max = 3;
- Returns:
- Whether the xMax field is set.
-
getXMax
com.google.protobuf.FloatValue getXMax()
The rightmost coordinate of the bounding box.
.google.protobuf.FloatValue x_max = 3;
- Returns:
- The xMax.
-
getXMaxOrBuilder
com.google.protobuf.FloatValueOrBuilder getXMaxOrBuilder()
The rightmost coordinate of the bounding box.
.google.protobuf.FloatValue x_max = 3;
-
hasYMin
boolean hasYMin()
The topmost coordinate of the bounding box.
.google.protobuf.FloatValue y_min = 4;
- Returns:
- Whether the yMin field is set.
-
getYMin
com.google.protobuf.FloatValue getYMin()
The topmost coordinate of the bounding box.
.google.protobuf.FloatValue y_min = 4;
- Returns:
- The yMin.
-
getYMinOrBuilder
com.google.protobuf.FloatValueOrBuilder getYMinOrBuilder()
The topmost coordinate of the bounding box.
.google.protobuf.FloatValue y_min = 4;
-
hasYMax
boolean hasYMax()
The bottommost coordinate of the bounding box.
.google.protobuf.FloatValue y_max = 5;
- Returns:
- Whether the yMax field is set.
-
getYMax
com.google.protobuf.FloatValue getYMax()
The bottommost coordinate of the bounding box.
.google.protobuf.FloatValue y_max = 5;
- Returns:
- The yMax.
-
getYMaxOrBuilder
com.google.protobuf.FloatValueOrBuilder getYMaxOrBuilder()
The bottommost coordinate of the bounding box.
.google.protobuf.FloatValue y_max = 5;
-
-