Class: Aws::Rekognition::Types::AgeRange

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

Overview

Structure containing the estimated age range, in years, for a face.

Rekognition estimates an age-range for faces detected in the input image. Estimated age ranges can overlap; a face of a 5 year old may have an estimated range of 4-6 whilst the face of a 6 year old may have an estimated range of 4-8.

Instance Attribute Summary collapse

Instance Attribute Details

#highInteger

The highest estimated age.

Returns:

  • (Integer)


26
27
28
29
30
# File 'lib/aws-sdk-rekognition/types.rb', line 26

class AgeRange < Struct.new(
  :low,
  :high)
  include Aws::Structure
end

#lowInteger

The lowest estimated age.

Returns:

  • (Integer)


26
27
28
29
30
# File 'lib/aws-sdk-rekognition/types.rb', line 26

class AgeRange < Struct.new(
  :low,
  :high)
  include Aws::Structure
end