class Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1PersonDetectionAnnotation

Person detection annotation per video.

Attributes

tracks[RW]

The detected tracks of a person. Corresponds to the JSON property `tracks` @return [Array<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1Track>]

version[RW]

Feature version. Corresponds to the JSON property `version` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/videointelligence_v1/classes.rb, line 841
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/videointelligence_v1/classes.rb, line 846
def update!(**args)
  @tracks = args[:tracks] if args.key?(:tracks)
  @version = args[:version] if args.key?(:version)
end