Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2FaceDetectionAnnotation

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

Overview

Face detection annotation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2FaceDetectionAnnotation

Returns a new instance of GoogleCloudVideointelligenceV1beta2FaceDetectionAnnotation.



1887
1888
1889
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 1887

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)


1875
1876
1877
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 1875

def thumbnail
  @thumbnail
end

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

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



1880
1881
1882
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 1880

def tracks
  @tracks
end

#versionString

Feature version. Corresponds to the JSON property version

Returns:

  • (String)


1885
1886
1887
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 1885

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1892
1893
1894
1895
1896
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 1892

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