Class: Aws::Rekognition::Types::MouthOpen

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

Overview

Indicates whether or not the mouth on the face is open, 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)


5547
5548
5549
5550
5551
5552
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5547

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

#valueBoolean

Boolean value that indicates whether the mouth on the face is open or not.

Returns:

  • (Boolean)


5547
5548
5549
5550
5551
5552
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5547

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