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 that appear to be expressed on the face, and the confidence level in the determination. The API is only making a determination of the physical appearance of a person’s face. It is not a determination of the person’s internal emotional state and should not be used in such a way. For example, a person pretending to have a sad face might not be sad emotionally.
Constant Summary collapse
- SENSITIVE =
[]
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.
2735 2736 2737 2738 2739 2740 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2735 class Emotion < Struct.new( :type, :confidence) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
Type of emotion detected.
2735 2736 2737 2738 2739 2740 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2735 class Emotion < Struct.new( :type, :confidence) SENSITIVE = [] include Aws::Structure end |