Class: Google::Apis::VideointelligenceV1beta1::GoogleCloudVideointelligenceV1p1beta1FaceDetectionFrame

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

Overview

Video frame level annotation results for face detection.

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

Returns a new instance of GoogleCloudVideointelligenceV1p1beta1FaceDetectionFrame



1425
1426
1427
# File 'generated/google/apis/videointelligence_v1beta1/classes.rb', line 1425

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

Instance Attribute Details

#attributesArray<Google::Apis::VideointelligenceV1beta1::GoogleCloudVideointelligenceV1p1beta1FaceDetectionAttribute>

Face attributes in a frame. There can be more than one attributes if the same face is detected in multiple locations within the current frame. Corresponds to the JSON property attributes



1417
1418
1419
# File 'generated/google/apis/videointelligence_v1beta1/classes.rb', line 1417

def attributes
  @attributes
end

#time_offsetString

Time-offset, relative to the beginning of the video, corresponding to the video frame for this location. Corresponds to the JSON property timeOffset

Returns:

  • (String)


1423
1424
1425
# File 'generated/google/apis/videointelligence_v1beta1/classes.rb', line 1423

def time_offset
  @time_offset
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1430
1431
1432
1433
# File 'generated/google/apis/videointelligence_v1beta1/classes.rb', line 1430

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