This page is READ-ONLY. It is generated from the old site.
All timestamps are relative to 2013 (when this page is generated).
If you are looking for TeX support, please go to VietTUG.org
All timestamps are relative to 2013 (when this page is generated).
If you are looking for TeX support, please go to VietTUG.org
ArchLinux: libcv.so.4 not found
lib. name changed :(
»
Votes:
1/1
OpenCV changes the libraries' names, so some programs won't work any more, as they can't locate the library libcv.so.4
. here is the trick found at StackOverflow
$ cd /usr/lib $ ln -s /usr/lib/libopencv_video.so.2.3 libcvaux.so.4 $ ln -s libopencv_legacy.so.2.3 libcv.so.4 $ ln -s libopencv_core.so.2.3 libcxcore.so.4 $ ln -s libopencv_highgui.so.2.3 libhighgui.so.4 $ ln -s libopencv_ml.so.2.3 libml.so.4 $ ldconfig # DONE
Comments