How to get the same x,y,z keypoint values using 1.x version? #2549
-
First of all, thank you for the great works! In the past, I did hand keypoint detection work using version 0.x of your repository. I used the config file 'configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_hand/hrnetv2_w18_coco_wholebody_hand_256x256_dark.py' in combination with the provided checkpoint. This allowed me to obtain x, y, z values for each keypoint. Recently, I've attempted to utilize version 1.x, and found that the config file 'configs/hand_2d_keypoint/topdown_heatmap/coco_wholebody_hand/td-hm_hrnetv2-w18_dark-8xb32-210e_coco-wholebody-hand-256x256.py' uses the exact same checkpoint. However, the inference results only include x, y values for each keypoint, rather than the x, y, z values I was able to obtain before. I would like to continue obtaining x, y, z values for each keypoint. Could you please guide me on how to achieve this, even when using the new version? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The method "hrnetv2_w18_coco_wholebody_hand_256x256_dark" is used to detect 2D keypoints of the hand and does not provide a z-value. |
Beta Was this translation helpful? Give feedback.
Hello @jhkim-lumanlab, I wanted to clarify that the third value displayed is actually the confidence of the prediction. In the new version, this value is now assigned to the
keypoint_scores
attribute.