Information about a label detected in a video analysis request and the time the label was detected in the video.

interface LabelDetection {
    DurationMillis?: number;
    EndTimestampMillis?: number;
    Label?: Label;
    StartTimestampMillis?: number;
    Timestamp?: number;
}

Properties

DurationMillis?: number

The time duration of a segment in milliseconds, I.e. time elapsed from StartTimestampMillis to EndTimestampMillis.

EndTimestampMillis?: number

The time in milliseconds defining the end of the timeline segment containing a continuously detected label.

Label?: Label

Details about the detected label.

StartTimestampMillis?: number

The time in milliseconds defining the start of the timeline segment containing a continuously detected label.

Timestamp?: number

Time, in milliseconds from the start of the video, that the label was detected. Note that Timestamp is not guaranteed to be accurate to the individual frame where the label first appears.