Class: Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1FaceFrame

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

Overview

Deprecated. No effect.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1FaceFrame

Returns a new instance of GoogleCloudVideointelligenceV1FaceFrame.



298
299
300
# File 'generated/google/apis/videointelligence_v1p3beta1/classes.rb', line 298

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

Instance Attribute Details

#normalized_bounding_boxesArray<Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1NormalizedBoundingBox>

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



290
291
292
# File 'generated/google/apis/videointelligence_v1p3beta1/classes.rb', line 290

def normalized_bounding_boxes
  @normalized_bounding_boxes
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)


296
297
298
# File 'generated/google/apis/videointelligence_v1p3beta1/classes.rb', line 296

def time_offset
  @time_offset
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



303
304
305
306
# File 'generated/google/apis/videointelligence_v1p3beta1/classes.rb', line 303

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