Class: Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1p3beta1FaceDetectionConfig
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1p3beta1FaceDetectionConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/videointelligence_v1p3beta1/classes.rb,
lib/google/apis/videointelligence_v1p3beta1/representations.rb,
lib/google/apis/videointelligence_v1p3beta1/representations.rb
Overview
Config for FACE_DETECTION.
Instance Attribute Summary collapse
-
#include_attributes ⇒ Boolean
(also: #include_attributes?)
Whether to enable face attributes detection, such as glasses, dark_glasses, mouth_open etc.
-
#include_bounding_boxes ⇒ Boolean
(also: #include_bounding_boxes?)
Whether bounding boxes are included in the face annotation output.
-
#model ⇒ String
Model to use for face detection.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p3beta1FaceDetectionConfig
constructor
A new instance of GoogleCloudVideointelligenceV1p3beta1FaceDetectionConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p3beta1FaceDetectionConfig
Returns a new instance of GoogleCloudVideointelligenceV1p3beta1FaceDetectionConfig.
5054 5055 5056 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5054 def initialize(**args) update!(**args) end |
Instance Attribute Details
#include_attributes ⇒ Boolean 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
5039 5040 5041 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5039 def include_attributes @include_attributes end |
#include_bounding_boxes ⇒ Boolean Also known as: include_bounding_boxes?
Whether bounding boxes are included in the face annotation output.
Corresponds to the JSON property includeBoundingBoxes
5045 5046 5047 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5045 def include_bounding_boxes @include_bounding_boxes end |
#model ⇒ String
Model to use for face detection. Supported values: "builtin/stable" (the
default if unset) and "builtin/latest".
Corresponds to the JSON property model
5052 5053 5054 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5052 def model @model end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5059 5060 5061 5062 5063 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5059 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 |