Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p2beta1PersonDetectionAnnotation

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

Overview

Person detection annotation per video.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p2beta1PersonDetectionAnnotation

Returns a new instance of GoogleCloudVideointelligenceV1p2beta1PersonDetectionAnnotation.



4717
4718
4719
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 4717

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

Instance Attribute Details

#tracksArray<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p2beta1Track>

The detected tracks of a person. Corresponds to the JSON property tracks



4710
4711
4712
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 4710

def tracks
  @tracks
end

#versionString

Feature version. Corresponds to the JSON property version

Returns:

  • (String)


4715
4716
4717
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 4715

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4722
4723
4724
4725
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 4722

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