Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p1beta1FaceDetectionAnnotation

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

Face detection annotation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p1beta1FaceDetectionAnnotation

Returns a new instance of GoogleCloudVideointelligenceV1p1beta1FaceDetectionAnnotation.



3156
3157
3158
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 3156

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

Instance Attribute Details

#thumbnailString

The thumbnail of a person's face. Corresponds to the JSON property thumbnail NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


3144
3145
3146
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 3144

def thumbnail
  @thumbnail
end

#tracksArray<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p1beta1Track>

The face tracks with attributes. Corresponds to the JSON property tracks



3149
3150
3151
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 3149

def tracks
  @tracks
end

#versionString

Feature version. Corresponds to the JSON property version

Returns:

  • (String)


3154
3155
3156
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 3154

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3161
3162
3163
3164
3165
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 3161

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