You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for sharing your great code. I have a few questions. I am new in this field. If you kindly answer my questions, I really appreciate it.
I would like to have keypoint coordinates. Is it stored in the variable "keypoint coordinates".
And I noticed that coordinate is [y, x] not [x, y]. Is my understanding correct?
How does program decide which keypoint to draw? I guess, it is decided by comparing its score with "min_part_score=0.25".
There is another parameter "min_confidence=0.1" in function "get_adjacent_keypoints".
Is it a threshold to whether draw skeleton?
The text was updated successfully, but these errors were encountered:
The keypoint coordinates are stored in keypoint_coords, with the first index being the pose, and the second being the keypoint. So for example, the keypoints of the 1st skeleton are in keypoint_coords[0,:,:] (list of [y,x] pixel coordinates); and to access the first keypoint of the first pose: keypoint_coords[0,0,:] ([y,x] pixel coordinate).
Thank you for sharing your great code. I have a few questions. I am new in this field. If you kindly answer my questions, I really appreciate it.
I would like to have keypoint coordinates. Is it stored in the variable "keypoint coordinates".
And I noticed that coordinate is [y, x] not [x, y]. Is my understanding correct?
How does program decide which keypoint to draw? I guess, it is decided by comparing its score with "min_part_score=0.25".
There is another parameter "min_confidence=0.1" in function "get_adjacent_keypoints".
Is it a threshold to whether draw skeleton?
The text was updated successfully, but these errors were encountered: