Class: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p2beta1FaceDetectionConfig

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

Overview

Config for FACE_DETECTION.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p2beta1FaceDetectionConfig

Returns a new instance of GoogleCloudVideointelligenceV1p2beta1FaceDetectionConfig.



3824
3825
3826
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 3824

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

Instance Attribute Details

#include_attributesBoolean Also known as: include_attributes?

Whether to enable face attributes detection, such as glasses, dark_glasses, mouth_open etc. Ignored if 'include_bounding_boxes' is set to false. Corresponds to the JSON property includeAttributes

Returns:

  • (Boolean)


3809
3810
3811
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 3809

def include_attributes
  @include_attributes
end

#include_bounding_boxesBoolean Also known as: include_bounding_boxes?

Whether bounding boxes are included in the face annotation output. Corresponds to the JSON property includeBoundingBoxes

Returns:

  • (Boolean)


3815
3816
3817
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 3815

def include_bounding_boxes
  @include_bounding_boxes
end

#modelString

Model to use for face detection. Supported values: "builtin/stable" (the default if unset) and "builtin/latest". Corresponds to the JSON property model

Returns:

  • (String)


3822
3823
3824
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 3822

def model
  @model
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3829
3830
3831
3832
3833
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 3829

def update!(**args)
  @include_attributes = args[:include_attributes] if args.key?(:include_attributes)
  @include_bounding_boxes = args[:include_bounding_boxes] if args.key?(:include_bounding_boxes)
  @model = args[:model] if args.key?(:model)
end