Class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p1beta1FaceAnnotation

Inherits:
Object
  • Object
show all
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

Deprecated. No effect.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p1beta1FaceAnnotation

Returns a new instance of GoogleCloudVideointelligenceV1p1beta1FaceAnnotation.



2999
3000
3001
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 2999

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

Instance Attribute Details

#framesArray<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p1beta1FaceFrame>

All video frames where a face was detected. Corresponds to the JSON property frames



2986
2987
2988
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 2986

def frames
  @frames
end

#segmentsArray<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p1beta1FaceSegment>

All video segments where a face was detected. Corresponds to the JSON property segments



2991
2992
2993
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 2991

def segments
  @segments
end

#thumbnailString

Thumbnail of a representative face view (in JPEG format). Corresponds to the JSON property thumbnail NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


2997
2998
2999
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 2997

def thumbnail
  @thumbnail
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3004
3005
3006
3007
3008
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 3004

def update!(**args)
  @frames = args[:frames] if args.key?(:frames)
  @segments = args[:segments] if args.key?(:segments)
  @thumbnail = args[:thumbnail] if args.key?(:thumbnail)
end