Class: Aws::Rekognition::Types::ProtectiveEquipmentSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::ProtectiveEquipmentSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Summary information for required items of personal protective equipment (PPE) detected on persons by a call to DetectProtectiveEquipment. You specify the required type of PPE in the ‘SummarizationAttributes` (ProtectiveEquipmentSummarizationAttributes) input parameter. The summary includes which persons were detected wearing the required personal protective equipment (`PersonsWithRequiredEquipment`), which persons were detected as not wearing the required PPE (`PersonsWithoutRequiredEquipment`), and the persons in which a determination could not be made (`PersonsIndeterminate`).
To get a total for each category, use the size of the field array. For example, to find out how many people were detected as wearing the specified PPE, use the size of the ‘PersonsWithRequiredEquipment` array. If you want to find out more about a person, such as the location (BoundingBox) of the person on the image, use the person ID in each array element. Each person ID matches the ID field of a ProtectiveEquipmentPerson object returned in the `Persons` array by `DetectProtectiveEquipment`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#persons_indeterminate ⇒ Array<Integer>
An array of IDs for persons where it was not possible to determine if they are wearing personal protective equipment.
-
#persons_with_required_equipment ⇒ Array<Integer>
An array of IDs for persons who are wearing detected personal protective equipment.
-
#persons_without_required_equipment ⇒ Array<Integer>
An array of IDs for persons who are not wearing all of the types of PPE specified in the ‘RequiredEquipmentTypes` field of the detected personal protective equipment.
Instance Attribute Details
#persons_indeterminate ⇒ Array<Integer>
An array of IDs for persons where it was not possible to determine if they are wearing personal protective equipment.
6099 6100 6101 6102 6103 6104 6105 |
# File 'lib/aws-sdk-rekognition/types.rb', line 6099 class ProtectiveEquipmentSummary < Struct.new( :persons_with_required_equipment, :persons_without_required_equipment, :persons_indeterminate) SENSITIVE = [] include Aws::Structure end |
#persons_with_required_equipment ⇒ Array<Integer>
An array of IDs for persons who are wearing detected personal protective equipment.
6099 6100 6101 6102 6103 6104 6105 |
# File 'lib/aws-sdk-rekognition/types.rb', line 6099 class ProtectiveEquipmentSummary < Struct.new( :persons_with_required_equipment, :persons_without_required_equipment, :persons_indeterminate) SENSITIVE = [] include Aws::Structure end |
#persons_without_required_equipment ⇒ Array<Integer>
An array of IDs for persons who are not wearing all of the types of PPE specified in the ‘RequiredEquipmentTypes` field of the detected personal protective equipment.
6099 6100 6101 6102 6103 6104 6105 |
# File 'lib/aws-sdk-rekognition/types.rb', line 6099 class ProtectiveEquipmentSummary < Struct.new( :persons_with_required_equipment, :persons_without_required_equipment, :persons_indeterminate) SENSITIVE = [] include Aws::Structure end |