Struct gapi_grpc::google::cloud::aiplatform::v1beta1::schema::predict::prediction::VideoObjectTrackingPredictionResult[][src]

pub struct VideoObjectTrackingPredictionResult {
    pub id: String,
    pub display_name: String,
    pub time_segment_start: Option<Duration>,
    pub time_segment_end: Option<Duration>,
    pub confidence: Option<f32>,
    pub frames: Vec<Frame>,
}

Prediction output format for Video Object Tracking.

Fields

id: String

The resource ID of the AnnotationSpec that had been identified.

display_name: String

The display name of the AnnotationSpec that had been identified.

time_segment_start: Option<Duration>

The beginning, inclusive, of the video’s time segment in which the object instance 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.

time_segment_end: Option<Duration>

The end, inclusive, of the video’s time segment in which the object instance 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.

confidence: Option<f32>

The Model’s confidence in correction of this prediction, higher value means higher confidence.

frames: Vec<Frame>

All of the frames of the video in which a single object instance has been detected. The bounding boxes in the frames identify the same object.

Trait Implementations

impl Clone for VideoObjectTrackingPredictionResult[src]

impl Debug for VideoObjectTrackingPredictionResult[src]

impl Default for VideoObjectTrackingPredictionResult[src]

impl Message for VideoObjectTrackingPredictionResult[src]

impl PartialEq<VideoObjectTrackingPredictionResult> for VideoObjectTrackingPredictionResult[src]

impl StructuralPartialEq for VideoObjectTrackingPredictionResult[src]

Auto Trait Implementations

impl RefUnwindSafe for VideoObjectTrackingPredictionResult

impl Send for VideoObjectTrackingPredictionResult

impl Sync for VideoObjectTrackingPredictionResult

impl Unpin for VideoObjectTrackingPredictionResult

impl UnwindSafe for VideoObjectTrackingPredictionResult

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]