Class: Aws::Rekognition::Types::EquipmentDetection

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

Overview

Information about an item of Personal Protective Equipment (PPE) detected by DetectProtectiveEquipment. For more information, see DetectProtectiveEquipment.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bounding_boxTypes::BoundingBox

A bounding box surrounding the item of detected PPE.

Returns:



2750
2751
2752
2753
2754
2755
2756
2757
# File 'lib/aws-sdk-rekognition/types.rb', line 2750

class EquipmentDetection < Struct.new(
  :bounding_box,
  :confidence,
  :type,
  :covers_body_part)
  SENSITIVE = []
  include Aws::Structure
end

#confidenceFloat

The confidence that Amazon Rekognition has that the bounding box (‘BoundingBox`) contains an item of PPE.

Returns:

  • (Float)


2750
2751
2752
2753
2754
2755
2756
2757
# File 'lib/aws-sdk-rekognition/types.rb', line 2750

class EquipmentDetection < Struct.new(
  :bounding_box,
  :confidence,
  :type,
  :covers_body_part)
  SENSITIVE = []
  include Aws::Structure
end

#covers_body_partTypes::CoversBodyPart

Information about the body part covered by the detected PPE.



2750
2751
2752
2753
2754
2755
2756
2757
# File 'lib/aws-sdk-rekognition/types.rb', line 2750

class EquipmentDetection < Struct.new(
  :bounding_box,
  :confidence,
  :type,
  :covers_body_part)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The type of detected PPE.

Returns:

  • (String)


2750
2751
2752
2753
2754
2755
2756
2757
# File 'lib/aws-sdk-rekognition/types.rb', line 2750

class EquipmentDetection < Struct.new(
  :bounding_box,
  :confidence,
  :type,
  :covers_body_part)
  SENSITIVE = []
  include Aws::Structure
end