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)


6803
6804
6805
6806
6807
6808
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 6803

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)


6803
6804
6805
6806
6807
6808
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 6803

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