Class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2Track

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

A track of an object instance.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2Track

Returns a new instance of GoogleCloudVideointelligenceV1beta2Track.



2432
2433
2434
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 2432

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

Instance Attribute Details

#attributesArray<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2DetectedAttribute>

Optional. Attributes in the track level. Corresponds to the JSON property attributes



2415
2416
2417
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 2415

def attributes
  @attributes
end

#confidenceFloat

Optional. The confidence score of the tracked object. Corresponds to the JSON property confidence

Returns:

  • (Float)


2420
2421
2422
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 2420

def confidence
  @confidence
end

#segmentGoogle::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2VideoSegment

Video segment. Corresponds to the JSON property segment



2425
2426
2427
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 2425

def segment
  @segment
end

#timestamped_objectsArray<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2TimestampedObject>

The object with timestamp and attributes per frame in the track. Corresponds to the JSON property timestampedObjects



2430
2431
2432
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 2430

def timestamped_objects
  @timestamped_objects
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2437
2438
2439
2440
2441
2442
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 2437

def update!(**args)
  @attributes = args[:attributes] if args.key?(:attributes)
  @confidence = args[:confidence] if args.key?(:confidence)
  @segment = args[:segment] if args.key?(:segment)
  @timestamped_objects = args[:timestamped_objects] if args.key?(:timestamped_objects)
end