Class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2DetectedAttribute
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2DetectedAttribute
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/videointelligence_v1beta2/classes.rb,
generated/google/apis/videointelligence_v1beta2/representations.rb,
generated/google/apis/videointelligence_v1beta2/representations.rb
Overview
A generic detected attribute represented by name in string format.
Instance Attribute Summary collapse
-
#confidence ⇒ Float
Detected attribute confidence.
-
#name ⇒ String
The name of the attribute, for example, glasses, dark_glasses, mouth_open.
-
#value ⇒ String
Text value of the detection result.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2DetectedAttribute
constructor
A new instance of GoogleCloudVideointelligenceV1beta2DetectedAttribute.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2DetectedAttribute
Returns a new instance of GoogleCloudVideointelligenceV1beta2DetectedAttribute.
1299 1300 1301 |
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1299 def initialize(**args) update!(**args) end |
Instance Attribute Details
#confidence ⇒ Float
Detected attribute confidence. Range [0, 1].
Corresponds to the JSON property confidence
1285 1286 1287 |
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1285 def confidence @confidence end |
#name ⇒ String
The name of the attribute, for example, glasses, dark_glasses, mouth_open. A
full list of supported type names will be provided in the document.
Corresponds to the JSON property name
1291 1292 1293 |
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1291 def name @name end |
#value ⇒ String
Text value of the detection result. For example, the value for "HairColor" can
be "black", "blonde", etc.
Corresponds to the JSON property value
1297 1298 1299 |
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1297 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1304 1305 1306 1307 1308 |
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1304 def update!(**args) @confidence = args[:confidence] if args.key?(:confidence) @name = args[:name] if args.key?(:name) @value = args[:value] if args.key?(:value) end |