warmshao / WiLoR-mini

WiLoR hand 3d pose estimation! Simplifying WiLoR into a python package!
8 stars 0 forks source link

Include scikit-image in requirements #2

Closed Joeclinton1 closed 6 hours ago

Joeclinton1 commented 12 hours ago

Great project btw!

I tried to run WiLorHandPose3dEstimationPipeline and got an error that skimage wasn't installed which was easily fixed by doing pip install scikit-image, so this just needs to be added to the requirements.

Alternatively it might be better to reduce imports by implementing a simple gaussian filter yourself in numpy.

warmshao commented 12 hours ago

Great project btw!

I tried to install and got an error that skimage wasn't installed which was easily fixed by doing pip install scikit-image, so this just needs to be added to the requirements.

Alternatively it might be better to reduce imports by implementing a simple gaussian filter yourself in numpy.

thank you! I will fix it today

Joeclinton1 commented 11 hours ago

Great project btw! I tried to install and got an error that skimage wasn't installed which was easily fixed by doing pip install scikit-image, so this just needs to be added to the requirements. Alternatively it might be better to reduce imports by implementing a simple gaussian filter yourself in numpy.

thank you! I will fix it today

thanks!