OpenCV multiple version on Linux ENV script of setting
发布时间:2020-12-13 21:12:13 所属栏目:PHP教程 来源:网络整理
导读:I have multiple version of OpenCV,2.4.13 and 3.1.0,on my Ubuntu 14.04.4 LTS. The developted applications depends on either one. To keep all the OpenCV versions,I wrote a script to set corresponding environment. The body of my script is sho
I have multiple version of OpenCV,2.4.13 and 3.1.0,on my Ubuntu 14.04.4 LTS. The developted applications depends on either one. To keep all the OpenCV versions,I wrote a script to set corresponding environment. The body of my script is showing below: #!/bin/bash
CV_PREFIX=/usr/local/opencv
if [ $# -eq 0 ] ; then
echo "Usage : setcv.sh 2.4.13 or setcv.sh 3.1.0"
else
if [ $1 != 2.4.13 -a $1 != 3.1.0 ] ; then
echo "wrong version"
else
echo Setting for OpenCV-$1
cp ${CV_PREFIX}/$1/lib/pkgconfig/opencv.pc /usr/local/lib/pkgconfig/opencv.pc
cp ${CV_PREFIX}/OpenCV-$1.conf /etc/ld.so.conf.d/
ldconfig
fi
fi You can run it with and you have to create two files: OpenCV⑵.4.13.conf and OpenCV⑶.1.0 to set the path of runtime libraries of the specified OpenCV. For example: /usr/local/opencv/2.4.13/lib Have fun! (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |