Class: Aws::Rekognition::Types::ImageQuality
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::ImageQuality
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Identifies face image brightness and sharpness.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#brightness ⇒ Float
Value representing brightness of the face.
-
#sharpness ⇒ Float
Value representing sharpness of the face.
Instance Attribute Details
#brightness ⇒ Float
Value representing brightness of the face. The service returns a value between 0 and 100 (inclusive). A higher value indicates a brighter face image.
4419 4420 4421 4422 4423 4424 |
# File 'lib/aws-sdk-rekognition/types.rb', line 4419 class ImageQuality < Struct.new( :brightness, :sharpness) SENSITIVE = [] include Aws::Structure end |
#sharpness ⇒ Float
Value representing sharpness of the face. The service returns a value between 0 and 100 (inclusive). A higher value indicates a sharper face image.
4419 4420 4421 4422 4423 4424 |
# File 'lib/aws-sdk-rekognition/types.rb', line 4419 class ImageQuality < Struct.new( :brightness, :sharpness) SENSITIVE = [] include Aws::Structure end |