Class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1LogoRecognitionAnnotation
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1LogoRecognitionAnnotation
- 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
-
#entity ⇒ Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1Entity
Detected entity from video analysis.
-
#segments ⇒ Array<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1VideoSegment>
All video segments where the recognized logo appears.
-
#tracks ⇒ Array<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1Track>
All logo tracks where the recognized logo appears.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p3beta1LogoRecognitionAnnotation
constructor
A new instance of GoogleCloudVideointelligenceV1p3beta1LogoRecognitionAnnotation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p3beta1LogoRecognitionAnnotation
Returns a new instance of GoogleCloudVideointelligenceV1p3beta1LogoRecognitionAnnotation
3822 3823 3824 |
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 3822 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity ⇒ Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1Entity
Detected entity from video analysis.
Corresponds to the JSON property entity
3808 3809 3810 |
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 3808 def entity @entity end |
#segments ⇒ Array<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1VideoSegment>
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
3814 3815 3816 |
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 3814 def segments @segments end |
#tracks ⇒ Array<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1Track>
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
3820 3821 3822 |
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 3820 def tracks @tracks end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3827 3828 3829 3830 3831 |
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 3827 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 |