RonLek / FastV2C-HandNet

Repository for the implementation of "FastV2C-HandNet: Fast Voxel to Coordinate Hand Pose Estimation with 3D Convolutional Neural Networks"
https://arxiv.org/abs/1907.06327
10 stars 2 forks source link

I try to run "hand render" code, but it cannot get expected result. #5

Closed LYKlyk closed 4 years ago

LYKlyk commented 4 years ago

I try to run "hand render" code, but it cannot get expected result.

RonLek commented 4 years ago

A common mistake could be improper paths for the database_dir and center_dir variables in the hand_image_renderer.py file. You might want to do an os.path.exists() and check if the paths exists on your system. The paths given in the file are paths to the database and centers on my system. You need to change it correspondingly for yours.

LYKlyk commented 4 years ago

Thank you very much.