Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -343,10 +343,20 @@ message VideoAnnotationResults {
// There is exactly one element for each unique label.
repeated LabelAnnotation segment_label_annotations = 2;

// Presence label annotations on video level or user specified segment level.
// There is exactly one element for each unique label. This will eventually
// get publicly exposed and the restriction will be removed.
repeated LabelAnnotation segment_presence_label_annotations = 23;

// Topical label annotations on shot level.
// There is exactly one element for each unique label.
repeated LabelAnnotation shot_label_annotations = 3;

// Presence label annotations on shot level. There is exactly one element for
// each unique label. This will eventually get publicly exposed and the
// restriction will be removed.
repeated LabelAnnotation shot_presence_label_annotations = 24;

// Label annotations on frame level.
// There is exactly one element for each unique label.
repeated LabelAnnotation frame_label_annotations = 4;
Expand Down
Loading