Rongtao-Xu / RepresentationLearning

Representation Learning and Representation Fusion for computer vision, semantic scene understanding, and robotics.
63 stars 11 forks source link

Unable to install bilalfilter==0.1 in the TSCD #2

Open Rui412563 opened 1 year ago

Rui412563 commented 1 year ago

pip install -r requirements时不能安装 bilalfilter==0.1

Rui412563 commented 1 year ago

/sys.path.append("./wrapper/bilateralfilter/build/lib.linux-x86_64-3.6") from bilateralfilter import bilateralfilter, bilateralfilter_batch 这个路径找不到呀。感谢

Rongtao-Xu commented 1 year ago

Before Running, build python extension module:

cd wrapper/bilateralfilter swig -python -c++ bilateralfilter.i python setup.py install

Rui412563 commented 1 year ago

Thank you very much for your reply!