Class: Aws::Rekognition::Types::DatasetLabelStats

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

Overview

Statistics about a label used in a dataset. For more information, see DatasetLabelDescription.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bounding_box_countInteger

The total number of images that have the label assigned to a bounding box.

Returns:

  • (Integer)


1431
1432
1433
1434
1435
1436
# File 'lib/aws-sdk-rekognition/types.rb', line 1431

class DatasetLabelStats < Struct.new(
  :entry_count,
  :bounding_box_count)
  SENSITIVE = []
  include Aws::Structure
end

#entry_countInteger

The total number of images that use the label.

Returns:

  • (Integer)


1431
1432
1433
1434
1435
1436
# File 'lib/aws-sdk-rekognition/types.rb', line 1431

class DatasetLabelStats < Struct.new(
  :entry_count,
  :bounding_box_count)
  SENSITIVE = []
  include Aws::Structure
end