Skip to content

Commit

Permalink
Fixed issue with saved pose images (#1972)
Browse files Browse the repository at this point in the history
  • Loading branch information
talhaahussain committed Apr 28, 2024
1 parent 864326b commit 292d8a3
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,14 @@ def save(
:param show_confidence: Whether to show confidence scores on the image.
:param box_thickness: (Optional) Thickness of bounding boxes. If None, will adapt to the box size.
"""
image = self.draw(box_thickness=box_thickness, show_confidence=show_confidence)
image = self.draw(
edge_colors=edge_colors,
joint_thickness=joint_thickness,
keypoint_colors=keypoint_colors,
keypoint_radius=keypoint_radius,
box_thickness=box_thickness,
show_confidence=show_confidence,
)
save_image(image=image, path=output_path)


Expand Down

0 comments on commit 292d8a3

Please sign in to comment.