BodyPoseTrackingAccuracy class
Control how accurate the body tracking is at the cost of processing time.
Signature:
export declare abstract class BodyPoseTrackingAccuracy
Remarks
Higher accuracy models may not report a higher confidence score, however you should be more confident in their results anyway.
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
High |
| (not declared) | Can only process a few frame per second. Use this for a position snapshot, not to track movement. |
Low |
| (not declared) | Runs in near realtime, expect a performance of 30 fps on most devices. Use this to detect quick movements. |
Medium |
| (not declared) | Gives solid results at the cost of not being able to process every frame. Use this to detect slow movements. |
BodyPoseTrackingAccuracy.Low property
Runs in near realtime, expect a performance of 30 fps on most devices. Use this to detect quick movements.
Signature:
static readonly Low = 0;
BodyPoseTrackingAccuracy.Medium property
Gives solid results at the cost of not being able to process every frame. Use this to detect slow movements.
Signature:
static readonly Medium = 1;
BodyPoseTrackingAccuracy.High property
Can only process a few frame per second. Use this for a position snapshot, not to track movement.
Signature:
static readonly High = 2;
Updated over 1 year ago