Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p1beta1FaceAnnotation

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

Deprecated. No effect.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p1beta1FaceAnnotation

Returns a new instance of GoogleCloudVideointelligenceV1p1beta1FaceAnnotation.



3124
3125
3126
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 3124

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

Instance Attribute Details

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

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



3111
3112
3113
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 3111

def frames
  @frames
end

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

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



3116
3117
3118
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 3116

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)


3122
3123
3124
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 3122

def thumbnail
  @thumbnail
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3129
3130
3131
3132
3133
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 3129

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