(一)openCV在ubuntu下的配置与测试

前端之家收集整理的这篇文章主要介绍了(一)openCV在ubuntu下的配置与测试前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

安装cmake
因为高版本的openCV 需要高版本的cmake工具,所以先更新cmake
下载cmake自己编译安装

./configure –prefix=/usr/local
make
sudo make install

安装opencv3.30
下载openCV源码文件

cd ~/opencv-x.x.x
mkdir release
cd release
cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local ..
make
(make时出错,说找不到gst/video下的头文件 跟编译QGC,类似,把gst头文件复制过去)
sudo make install

添加openCV库的路径
vim /etc/ld.so.conf
添加include /usr/local/lib
添加环境变量
vim /etc/profile
添加 export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig
或则
vim /etc/.bashrc
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig

测试

原文链接:https://www.f2er.com/ubuntu/350689.html

猜你在找的Ubuntu相关文章