Closed BennyWnj closed 3 years ago
Hi, it’s in the demo code
Do you mean the two lines of codes that were commented on in render() function in run.py? I tried to uncomment the two lines and use my img path. The 2d keypoints were correctly mapped on the original image, but the human mesh overlay didn't seem correct.
Hi,
did you also comment this line?
img = np.zeros((img_res, img_res, 3)) # dummy
yes
Hi,
you should change this line toimg_shape = 255 * renderer(pred_vertices, camera_translation, img / 255.)
I have plan to update some codes, and I will update the demo code also. Thank you for noting me!
Thanks, that works.
Hi, is there code to draw human mesh on top of the original rgb picture as displayed in the paper?