class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1ObjectDetectionConfig

Config for video object detection human labeling task. Object detection will be conducted on the images extracted from the video, and those objects will be labeled with bounding boxes. User need to specify the number of images to be extracted per second as the extraction frame rate.

Attributes

annotation_spec_set[RW]

Required. Annotation spec set resource name. Corresponds to the JSON property `annotationSpecSet` @return [String]

extraction_frame_rate[RW]

Required. Number of frames per second to be extracted from the video. Corresponds to the JSON property `extractionFrameRate` @return [Float]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 3749
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 3754
def update!(**args)
  @annotation_spec_set = args[:annotation_spec_set] if args.key?(:annotation_spec_set)
  @extraction_frame_rate = args[:extraction_frame_rate] if args.key?(:extraction_frame_rate)
end