lmb-freiburg / hand3d

Network estimating 3D Handpose from single color images
GNU General Public License v2.0
802 stars 252 forks source link

is there a way to extract your predicted keypoints #10

Closed coldgemini closed 6 years ago

coldgemini commented 6 years ago

is there a way to extract your predicted keypoints

Franziska-Mueller commented 6 years ago

When you check the run.py file, you can see that the predictions are obtained in line 62: keypoints_scoremap_v, keypoint_coord3d_v = sess.run(...)

Note that the score maps are the complete score/heat maps so the function "detect_keypoints" in line 73 is applied to obtain the 2D u,v coordinate prediction.

zimmerm commented 6 years ago

Thank you for answering that Franziska :)