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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-rekognition/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)


1419
1420
1421
1422
1423
1424
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 1419

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)


1419
1420
1421
1422
1423
1424
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 1419

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