BodyPose interface
Signature:
export interface BodyPose
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
BodyPartToPosition | readonly | ReadonlyObjectMap<BodyPartPosition> | The body points that were detected in this pose, indexed by body part name. |
Confidence | readonly | number | How confident the AI is of this pose on a scale form 0 to 100. |
TimeOfPose | readonly | number | Millisecond 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;
Updated almost 2 years ago