moberweger / deep-prior-pp

Improving Fast And Accurate 3D Hand Pose Estimation
GNU General Public License v3.0
144 stars 40 forks source link

This is some woring with the code! #35

Closed lxz1104 closed 5 years ago

lxz1104 commented 5 years ago

This is a error in deep-prior-pp/src/data/transformations.py(line: 117):

from transforms3d.euler import euler2mat
R[:3, :3] = euler2mat(alpha_x, alpha_y, alpha_z, 'rxyz')

I cannot found the transforms3d in this project. How can I fix it ?

moberweger commented 5 years ago

transforms3d is an 3rd party python package. On Ubuntu, use pip install transforms3d to install this package.

lxz1104 commented 5 years ago

Thanks!It's helpful.