Class: Aws::Rekognition::Types::DatasetLabelStats
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Rekognition::Types::DatasetLabelStats
 
 
- 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
- 
  
    
      #bounding_box_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of images that have the label assigned to a bounding box.
 - 
  
    
      #entry_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of images that use the label.
 
Instance Attribute Details
#bounding_box_count ⇒ Integer
The total number of images that have the label assigned to a bounding box.
      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_count ⇒ Integer
The total number of images that use the label.
      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  |