BodyPose interface

Signature:

export interface BodyPose 

Properties

PropertyModifiersTypeDescription
BodyPartToPositionreadonlyReadonlyObjectMap<BodyPartPosition>The body points that were detected in this pose, indexed by body part name.
ConfidencereadonlynumberHow confident the AI is of this pose on a scale form 0 to 100.
TimeOfPosereadonlynumberMillisecond timing of the pose detection event.

BodyPose.BodyPartToPosition property

The body points that were detected in this pose, indexed by body part name.

Signature:

readonly BodyPartToPosition: ReadonlyObjectMap<BodyPartPosition>;

BodyPose.Confidence property

How confident the AI is of this pose on a scale form 0 to 100.

Signature:

readonly Confidence: number;

BodyPose.TimeOfPose property

Millisecond timing of the pose detection event.

Signature:

readonly TimeOfPose: number;