Arthur151 / ROMP

Monocular, One-stage, Regression of Multiple 3D People and their 3D positions & trajectories in camera & global coordinates. ROMP[ICCV21], BEV[CVPR22], TRACE[CVPR2023]
https://www.yusun.work/
Apache License 2.0
1.36k stars 231 forks source link

Fix the project with numpy>=1.24 #440

Open VDuchauffour opened 1 year ago

VDuchauffour commented 1 year ago

Since numpy 1.24, the usage of np.float and np.int is depreced and raised an error. It must be replace with builtin float and int. Could this be fixed? Thank you

blibot commented 1 year ago

there are not many file to change, I did fixed it myself, just by removing the np.

VDuchauffour commented 1 year ago

We use this package in my organization, having to use a package without having a dependency (i.e. Numpy) upper bounded to a version (i.e. <=1.24) seems like an honest request to me.