Body Pose Estimation¶
- SDK.estimate_pose(self: tfsdk.SDK, bounding_boxes: List[tfsdk.BoundingBox]) → List[List[tfsdk.Landmark]]¶
 Estimate body pose.
- Parameters
 bounding_boxes –
tfsdk.BoundingBoxesreturned bytfsdk.SDK.detect_objects().- Returns
 The
ERRORCODEand a list of the bodytfsdk.Landmark, in that order.
- SDK.draw_pose(self: tfsdk.SDK, filepath: str, landmarks: List[List[tfsdk.Landmark]]) → None¶
 Draw body pose.
- Parameters
 filepath – relative or absolute file path without a file extension.
landmarks – a list of
tfsdk.Landmarkreturned bytfsdk.SDK.estimate_pose().