Class: Aws::Rekognition::Types::Emotion
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::Emotion
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
The emotions detected on the face, and the confidence level in the determination. For example, HAPPY, SAD, and ANGRY.
Instance Attribute Summary collapse
-
#confidence ⇒ Float
Level of confidence in the determination.
-
#type ⇒ String
Type of emotion detected.
Instance Attribute Details
#confidence ⇒ Float
Level of confidence in the determination.
593 594 595 596 597 |
# File 'lib/aws-sdk-rekognition/types.rb', line 593 class Emotion < Struct.new( :type, :confidence) include Aws::Structure end |
#type ⇒ String
Type of emotion detected.
593 594 595 596 597 |
# File 'lib/aws-sdk-rekognition/types.rb', line 593 class Emotion < Struct.new( :type, :confidence) include Aws::Structure end |