Class: Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1VideoEventAnnotation
- Inherits:
-
Object
- Object
- Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1VideoEventAnnotation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/datalabeling_v1beta1/classes.rb,
generated/google/apis/datalabeling_v1beta1/representations.rb,
generated/google/apis/datalabeling_v1beta1/representations.rb
Overview
Video event annotation.
Instance Attribute Summary collapse
-
#annotation_spec ⇒ Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1AnnotationSpec
Container of information related to one possible annotation that can be used in a labeling task.
-
#time_segment ⇒ Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1TimeSegment
A time period inside of an example that has a time dimension (e.g. video).
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatalabelingV1beta1VideoEventAnnotation
constructor
A new instance of GoogleCloudDatalabelingV1beta1VideoEventAnnotation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatalabelingV1beta1VideoEventAnnotation
Returns a new instance of GoogleCloudDatalabelingV1beta1VideoEventAnnotation.
4518 4519 4520 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 4518 def initialize(**args) update!(**args) end |
Instance Attribute Details
#annotation_spec ⇒ Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1AnnotationSpec
Container of information related to one possible annotation that can be used
in a labeling task. For example, an image classification task where images are
labeled as dog or cat must reference an AnnotationSpec for dog and an
AnnotationSpec for cat.
Corresponds to the JSON property annotationSpec
4511 4512 4513 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 4511 def annotation_spec @annotation_spec end |
#time_segment ⇒ Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1TimeSegment
A time period inside of an example that has a time dimension (e.g. video).
Corresponds to the JSON property timeSegment
4516 4517 4518 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 4516 def time_segment @time_segment end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4523 4524 4525 4526 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 4523 def update!(**args) @annotation_spec = args[:annotation_spec] if args.key?(:annotation_spec) @time_segment = args[:time_segment] if args.key?(:time_segment) end |