Class: Aws::Rekognition::Types::EyeOpen
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::EyeOpen
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Indicates whether or not the eyes on the face are open, and the confidence level in the determination.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#confidence ⇒ Float
Level of confidence in the determination.
-
#value ⇒ Boolean
Boolean value that indicates whether the eyes on the face are open.
Instance Attribute Details
#confidence ⇒ Float
Level of confidence in the determination.
2873 2874 2875 2876 2877 2878 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2873 class EyeOpen < Struct.new( :value, :confidence) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Boolean
Boolean value that indicates whether the eyes on the face are open.
2873 2874 2875 2876 2877 2878 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2873 class EyeOpen < Struct.new( :value, :confidence) SENSITIVE = [] include Aws::Structure end |