public sealed class VideoClassificationConfig : IMessage<VideoClassificationConfig>, IEquatable<VideoClassificationConfig>, IDeepCloneable<VideoClassificationConfig>, IBufferMessage, IMessage
Config for video classification human labeling task.
Currently two types of video classification are supported:
Assign labels on the entire video.
Split the video into multiple video clips based on camera shot, and
assign labels on each video clip.
public RepeatedField<VideoClassificationConfig.Types.AnnotationSpecSetConfig> AnnotationSpecSetConfigs { get; }
Required. The list of annotation spec set configs.
Since watching a video clip takes much longer time than an image, we
support label with multiple AnnotationSpecSet at the same time. Labels
in each AnnotationSpecSet will be shown in a group to contributors.
Contributors can select one or more (depending on whether to allow multi
label) from each group.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["The `VideoClassificationConfig` class is used for configuring human labeling tasks for video classification, supporting the assignment of labels to entire videos or to individual video clips based on camera shots."],["This class implements several interfaces, including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, enabling functionalities such as message handling, equality comparison, deep cloning, and buffered message operations."],["The `VideoClassificationConfig` class provides a `RepeatedField` property called `AnnotationSpecSetConfigs`, allowing for the configuration of multiple annotation spec sets for labeling, which are displayed in groups to contributors for selection."],["The `ApplyShotDetection` property, which is optional, can be used to determine if shot detection should be applied to the video, which allows the video to be split into different clips."],["There are different versions of `VideoClassificationConfig` available, including `2.0.0-beta05` (latest), `2.0.0-beta04`, and `1.0.0-beta03`, which are all accessible through different pages."]]],[]]