Class: Aws::Rekognition::Types::DetectLabelsImageQuality

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

Overview

The quality of an image provided for label detection, with regard to brightness, sharpness, and contrast.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#brightnessFloat

The brightness of an image provided for label detection.

Returns:

  • (Float)


2243
2244
2245
2246
2247
2248
2249
# File 'lib/aws-sdk-rekognition/types.rb', line 2243

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

#contrastFloat

The contrast of an image provided for label detection.

Returns:

  • (Float)


2243
2244
2245
2246
2247
2248
2249
# File 'lib/aws-sdk-rekognition/types.rb', line 2243

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

#sharpnessFloat

The sharpness of an image provided for label detection.

Returns:

  • (Float)


2243
2244
2245
2246
2247
2248
2249
# File 'lib/aws-sdk-rekognition/types.rb', line 2243

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