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)


4419
4420
4421
4422
4423
4424
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4419

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)


4419
4420
4421
4422
4423
4424
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4419

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