Class: Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1beta2ObjectTrackingFrame
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1beta2ObjectTrackingFrame
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/videointelligence_v1p3beta1/classes.rb,
lib/google/apis/videointelligence_v1p3beta1/representations.rb,
lib/google/apis/videointelligence_v1p3beta1/representations.rb
Overview
Video frame level annotations for object detection and tracking. This field stores per frame location, time offset, and confidence.
Instance Attribute Summary collapse
-
#normalized_bounding_box ⇒ Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox
Normalized bounding box.
-
#time_offset ⇒ String
The timestamp of the frame in microseconds.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2ObjectTrackingFrame
constructor
A new instance of GoogleCloudVideointelligenceV1beta2ObjectTrackingFrame.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2ObjectTrackingFrame
Returns a new instance of GoogleCloudVideointelligenceV1beta2ObjectTrackingFrame.
1762 1763 1764 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 1762 def initialize(**args) update!(**args) end |
Instance Attribute Details
#normalized_bounding_box ⇒ Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox
Normalized bounding box. The normalized vertex coordinates are relative to the
original image. Range: [0, 1].
Corresponds to the JSON property normalizedBoundingBox
1755 1756 1757 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 1755 def normalized_bounding_box @normalized_bounding_box end |
#time_offset ⇒ String
The timestamp of the frame in microseconds.
Corresponds to the JSON property timeOffset
1760 1761 1762 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 1760 def time_offset @time_offset end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1767 1768 1769 1770 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 1767 def update!(**args) @normalized_bounding_box = args[:normalized_bounding_box] if args.key?(:normalized_bounding_box) @time_offset = args[:time_offset] if args.key?(:time_offset) end |