Class: Aws::Rekognition::Types::Smile

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 smiling, 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)


5258
5259
5260
5261
5262
5263
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5258

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

#valueBoolean

Boolean value that indicates whether the face is smiling or not.

Returns:

  • (Boolean)


5258
5259
5260
5261
5262
5263
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5258

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