Class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1PersonDetectionConfig
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1PersonDetectionConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/videointelligence_v1p1beta1/classes.rb,
generated/google/apis/videointelligence_v1p1beta1/representations.rb,
generated/google/apis/videointelligence_v1p1beta1/representations.rb
Overview
Config for PERSON_DETECTION.
Instance Attribute Summary collapse
-
#include_attributes ⇒ Boolean
(also: #include_attributes?)
Whether to enable person attributes detection, such as cloth color (black, blue, etc), type (coat, dress, etc), pattern (plain, floral, etc), hair, etc.
-
#include_bounding_boxes ⇒ Boolean
(also: #include_bounding_boxes?)
Whether bounding boxes are included in the person detection annotation output.
-
#include_pose_landmarks ⇒ Boolean
(also: #include_pose_landmarks?)
Whether to enable pose landmarks detection.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p1beta1PersonDetectionConfig
constructor
A new instance of GoogleCloudVideointelligenceV1p1beta1PersonDetectionConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p1beta1PersonDetectionConfig
Returns a new instance of GoogleCloudVideointelligenceV1p1beta1PersonDetectionConfig.
3165 3166 3167 |
# File 'generated/google/apis/videointelligence_v1p1beta1/classes.rb', line 3165 def initialize(**args) update!(**args) end |
Instance Attribute Details
#include_attributes ⇒ Boolean Also known as: include_attributes?
Whether to enable person attributes detection, such as cloth color (black,
blue, etc), type (coat, dress, etc), pattern (plain, floral, etc), hair, etc.
Ignored if 'include_bounding_boxes' is set to false.
Corresponds to the JSON property includeAttributes
3149 3150 3151 |
# File 'generated/google/apis/videointelligence_v1p1beta1/classes.rb', line 3149 def include_attributes @include_attributes end |
#include_bounding_boxes ⇒ Boolean Also known as: include_bounding_boxes?
Whether bounding boxes are included in the person detection annotation output.
Corresponds to the JSON property includeBoundingBoxes
3155 3156 3157 |
# File 'generated/google/apis/videointelligence_v1p1beta1/classes.rb', line 3155 def include_bounding_boxes @include_bounding_boxes end |
#include_pose_landmarks ⇒ Boolean Also known as: include_pose_landmarks?
Whether to enable pose landmarks detection. Ignored if 'include_bounding_boxes'
is set to false.
Corresponds to the JSON property includePoseLandmarks
3162 3163 3164 |
# File 'generated/google/apis/videointelligence_v1p1beta1/classes.rb', line 3162 def include_pose_landmarks @include_pose_landmarks end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3170 3171 3172 3173 3174 |
# File 'generated/google/apis/videointelligence_v1p1beta1/classes.rb', line 3170 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) @include_pose_landmarks = args[:include_pose_landmarks] if args.key?(:include_pose_landmarks) end |