Class: Aws::Rekognition::Types::EyeOpen

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-rekognition/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

Instance Attribute Details

#confidenceFloat

Level of confidence in the determination.

Returns:

  • (Float)


2802
2803
2804
2805
2806
2807
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2802

class EyeOpen < Struct.new(
  :value,
  :confidence)
  SENSITIVE = []
  include Aws::Structure
end

#valueBoolean

Boolean value that indicates whether the eyes on the face are open.

Returns:

  • (Boolean)


2802
2803
2804
2805
2806
2807
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2802

class EyeOpen < Struct.new(
  :value,
  :confidence)
  SENSITIVE = []
  include Aws::Structure
end