Class: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p3beta1Track

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

Overview

A track of an object instance.

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) ⇒ GoogleCloudVideointelligenceV1p3beta1Track

Returns a new instance of GoogleCloudVideointelligenceV1p3beta1Track.



4630
4631
4632
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 4630

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

Instance Attribute Details

#attributesArray<Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p3beta1DetectedAttribute>

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



4613
4614
4615
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 4613

def attributes
  @attributes
end

#confidenceFloat

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

Returns:

  • (Float)


4618
4619
4620
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 4618

def confidence
  @confidence
end

#segmentGoogle::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p3beta1VideoSegment

Video segment. Corresponds to the JSON property segment



4623
4624
4625
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 4623

def segment
  @segment
end

#timestamped_objectsArray<Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p3beta1TimestampedObject>

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



4628
4629
4630
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 4628

def timestamped_objects
  @timestamped_objects
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4635
4636
4637
4638
4639
4640
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 4635

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