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
Hello, I want to visualize the hand skeleton in the output picture, how should I do it? Are you using your vis_keypoints(img, kps, kps_gt, bbox, score, skeleton, filename, score_thr=0.4, line_width=3, circle_rad = 3, save_path=None) function?
If so, how should the parameters img, kps, kps_gt, bbox, score, and skeleton be set?
The text was updated successfully, but these errors were encountered:
Yes, if you want to visualize, just use this function. This is copied from the baseline (of InterHand2.6M) code.
Each parameter represents:
img: input single image (before cropping);
kps: your predicted coordinates of hand joints;
kps_gt: GT coordinates of hand joints;
bbox: GT bounding box;
score: the joint_valid parameter which represents whether this joint is valid for visualization;
skeleton: the pre-defined hand skeleton which can directly loaded from the given file.
If you have any other questions, feel free to ask me!
Hello, I want to visualize the hand skeleton in the output picture, how should I do it? Are you using your vis_keypoints(img, kps, kps_gt, bbox, score, skeleton, filename, score_thr=0.4, line_width=3, circle_rad = 3, save_path=None) function?
If so, how should the parameters img, kps, kps_gt, bbox, score, and skeleton be set?
The text was updated successfully, but these errors were encountered: