Class: Aws::Rekognition::Types::ImageQuality

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

Overview

Identifies face image brightness and sharpness.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#brightnessFloat

Value representing brightness of the face. The service returns a value between 0 and 100 (inclusive). A higher value indicates a brighter face image.

Returns:

  • (Float)


4406
4407
4408
4409
4410
4411
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4406

class ImageQuality < Struct.new(
  :brightness,
  :sharpness)
  SENSITIVE = []
  include Aws::Structure
end

#sharpnessFloat

Value representing sharpness of the face. The service returns a value between 0 and 100 (inclusive). A higher value indicates a sharper face image.

Returns:

  • (Float)


4406
4407
4408
4409
4410
4411
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4406

class ImageQuality < Struct.new(
  :brightness,
  :sharpness)
  SENSITIVE = []
  include Aws::Structure
end