class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1ObjectTrackingConfig

Config for video object tracking human labeling task.

Attributes

annotation_spec_set[RW]

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

clip_length[RW]

Videos will be cut to smaller clips to make it easier for labelers to work on. Users can configure is field in seconds, if not set, default value is 20s. Corresponds to the JSON property `clipLength` @return [Fixnum]

overlap_length[RW]

The overlap length between different video clips. Users can configure is field in seconds, if not set, default value is 0.3s. Corresponds to the JSON property `overlapLength` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 3800
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 3805
def update!(**args)
  @annotation_spec_set = args[:annotation_spec_set] if args.key?(:annotation_spec_set)
  @clip_length = args[:clip_length] if args.key?(:clip_length)
  @overlap_length = args[:overlap_length] if args.key?(:overlap_length)
end