Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ProtectiveEquipmentPerson

import type { ProtectiveEquipmentPerson } from "https://aws-api.deno.dev/v0.4/services/rekognition.ts?docs=full";

A person detected by a call to "DetectProtectiveEquipment". The API returns all persons detected in the input image in an array of ProtectiveEquipmentPerson objects.

interface ProtectiveEquipmentPerson {
BodyParts?: ProtectiveEquipmentBodyPart[] | null;
BoundingBox?: BoundingBox | null;
Confidence?: number | null;
Id?: number | null;
}

§Properties

§

An array of body parts detected on a person's body (including body parts without PPE).

§
BoundingBox?: BoundingBox | null
[src]

A bounding box around the detected person.

§
Confidence?: number | null
[src]

The confidence that Amazon Rekognition has that the bounding box contains a person.

§
Id?: number | null
[src]

The identifier for the detected person. The identifier is only unique for a single call to DetectProtectiveEquipment.