Class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2ObjectTrackingFrame

Inherits:
Object
  • Object
show all
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

Video frame level annotations for object detection and tracking. This field stores per frame location, time offset, and confidence.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2ObjectTrackingFrame

Returns a new instance of GoogleCloudVideointelligenceV1beta2ObjectTrackingFrame.



1386
1387
1388
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1386

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#normalized_bounding_boxGoogle::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox

Normalized bounding box. The normalized vertex coordinates are relative to the original image. Range: [0, 1]. Corresponds to the JSON property normalizedBoundingBox



1379
1380
1381
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1379

def normalized_bounding_box
  @normalized_bounding_box
end

#time_offsetString

The timestamp of the frame in microseconds. Corresponds to the JSON property timeOffset

Returns:

  • (String)


1384
1385
1386
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1384

def time_offset
  @time_offset
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1391
1392
1393
1394
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1391

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