Class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1TimestampedObject

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/videointelligence_v1p1beta1/classes.rb,
generated/google/apis/videointelligence_v1p1beta1/representations.rb,
generated/google/apis/videointelligence_v1p1beta1/representations.rb

Overview

For tracking related features. An object at time_offset with attributes, and located with normalized_bounding_box.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p1beta1TimestampedObject

Returns a new instance of GoogleCloudVideointelligenceV1p1beta1TimestampedObject.



3539
3540
3541
# File 'generated/google/apis/videointelligence_v1p1beta1/classes.rb', line 3539

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

Instance Attribute Details

#attributesArray<Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1DetectedAttribute>

Optional. The attributes of the object in the bounding box. Corresponds to the JSON property attributes



3520
3521
3522
# File 'generated/google/apis/videointelligence_v1p1beta1/classes.rb', line 3520

def attributes
  @attributes
end

#landmarksArray<Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1DetectedLandmark>

Optional. The detected landmarks. Corresponds to the JSON property landmarks



3525
3526
3527
# File 'generated/google/apis/videointelligence_v1p1beta1/classes.rb', line 3525

def landmarks
  @landmarks
end

#normalized_bounding_boxGoogle::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingBox

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



3531
3532
3533
# File 'generated/google/apis/videointelligence_v1p1beta1/classes.rb', line 3531

def normalized_bounding_box
  @normalized_bounding_box
end

#time_offsetString

Time-offset, relative to the beginning of the video, corresponding to the video frame for this object. Corresponds to the JSON property timeOffset

Returns:

  • (String)


3537
3538
3539
# File 'generated/google/apis/videointelligence_v1p1beta1/classes.rb', line 3537

def time_offset
  @time_offset
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3544
3545
3546
3547
3548
3549
# File 'generated/google/apis/videointelligence_v1p1beta1/classes.rb', line 3544

def update!(**args)
  @attributes = args[:attributes] if args.key?(:attributes)
  @landmarks = args[:landmarks] if args.key?(:landmarks)
  @normalized_bounding_box = args[:normalized_bounding_box] if args.key?(:normalized_bounding_box)
  @time_offset = args[:time_offset] if args.key?(:time_offset)
end