Class: Aws::Rekognition::Types::Sunglasses

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rekognition/types.rb

Overview

Indicates whether or not the face is wearing sunglasses, 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)


7756
7757
7758
7759
7760
7761
# File 'lib/aws-sdk-rekognition/types.rb', line 7756

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

#valueBoolean

Boolean value that indicates whether the face is wearing sunglasses or not.

Returns:

  • (Boolean)


7756
7757
7758
7759
7760
7761
# File 'lib/aws-sdk-rekognition/types.rb', line 7756

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