Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Videointelligence: Add segment / shot presence label annotations fields (via synth). #8987

Merged
merged 1 commit into from
Aug 7, 2019
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