Class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2LogoRecognitionAnnotation

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

Annotation corresponding to one detected, tracked and recognized logo class.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2LogoRecognitionAnnotation

Returns a new instance of GoogleCloudVideointelligenceV1beta2LogoRecognitionAnnotation.



1767
1768
1769
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1767

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

Instance Attribute Details

#entityGoogle::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2Entity

Detected entity from video analysis. Corresponds to the JSON property entity



1753
1754
1755
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1753

def entity
  @entity
end

#segmentsArray<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2VideoSegment>

All video segments where the recognized logo appears. There might be multiple instances of the same logo class appearing in one VideoSegment. Corresponds to the JSON property segments



1759
1760
1761
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1759

def segments
  @segments
end

#tracksArray<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2Track>

All logo tracks where the recognized logo appears. Each track corresponds to one logo instance appearing in consecutive frames. Corresponds to the JSON property tracks



1765
1766
1767
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1765

def tracks
  @tracks
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1772
1773
1774
1775
1776
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1772

def update!(**args)
  @entity = args[:entity] if args.key?(:entity)
  @segments = args[:segments] if args.key?(:segments)
  @tracks = args[:tracks] if args.key?(:tracks)
end