Class: Aws::Rekognition::Types::Eyeglasses

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

Overview

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


2833
2834
2835
2836
2837
2838
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2833

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

#valueBoolean

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

Returns:

  • (Boolean)


2833
2834
2835
2836
2837
2838
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2833

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