Class: Aws::Rekognition::Types::Beard

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

Overview

Indicates whether or not the face has a beard, and the confidence level in the determination.

Instance Attribute Summary collapse

Instance Attribute Details

#confidenceFloat

Level of confidence in the determination.

Returns:

  • (Float)


43
44
45
46
47
# File 'lib/aws-sdk-rekognition/types.rb', line 43

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

#valueBoolean

Boolean value that indicates whether the face has beard or not.

Returns:

  • (Boolean)


43
44
45
46
47
# File 'lib/aws-sdk-rekognition/types.rb', line 43

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