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.

Instance Attribute Summary collapse

Instance Attribute Details

#confidenceFloat

Level of confidence in the determination.

Returns:

  • (Float)


1457
1458
1459
1460
1461
# File 'lib/aws-sdk-rekognition/types.rb', line 1457

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

#valueBoolean

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

Returns:

  • (Boolean)


1457
1458
1459
1460
1461
# File 'lib/aws-sdk-rekognition/types.rb', line 1457

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