Class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1TimestampedObject
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1TimestampedObject
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/videointelligence_v1beta2/classes.rb,
generated/google/apis/videointelligence_v1beta2/representations.rb,
generated/google/apis/videointelligence_v1beta2/representations.rb
Overview
For tracking related features. An object at time_offset with attributes, and located with normalized_bounding_box.
Instance Attribute Summary collapse
-
#attributes ⇒ Array<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1DetectedAttribute>
Optional.
-
#normalized_bounding_box ⇒ Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingBox
Normalized bounding box.
-
#time_offset ⇒ String
Time-offset, relative to the beginning of the video, corresponding to the video frame for this object.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p3beta1TimestampedObject
constructor
A new instance of GoogleCloudVideointelligenceV1p3beta1TimestampedObject.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p3beta1TimestampedObject
Returns a new instance of GoogleCloudVideointelligenceV1p3beta1TimestampedObject
4403 4404 4405 |
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 4403 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attributes ⇒ Array<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1DetectedAttribute>
Optional. The attributes of the object in the bounding box.
Corresponds to the JSON property attributes
4388 4389 4390 |
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 4388 def attributes @attributes end |
#normalized_bounding_box ⇒ Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingBox
Normalized bounding box.
The normalized vertex coordinates are relative to the original image.
Range: [0, 1].
Corresponds to the JSON property normalizedBoundingBox
4395 4396 4397 |
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 4395 def normalized_bounding_box @normalized_bounding_box end |
#time_offset ⇒ String
Time-offset, relative to the beginning of the video,
corresponding to the video frame for this object.
Corresponds to the JSON property timeOffset
4401 4402 4403 |
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 4401 def time_offset @time_offset end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4408 4409 4410 4411 4412 |
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 4408 def update!(**args) @attributes = args[:attributes] if args.key?(:attributes) @normalized_bounding_box = args[:normalized_bounding_box] if args.key?(:normalized_bounding_box) @time_offset = args[:time_offset] if args.key?(:time_offset) end |