前提自己安装好cuda和opencv,下载合适的zed驱动:https://www.stereolabs.com/developers/release/2.5/
chmod +x ZED_SDK_Linux_Ubuntu16_v2.0.0.run
./ZED_SDK_Linux_Ubuntu16_v2.5.1.runcd /usr/local/zed/tools 运行里面的ZED Depth Viewer
$ ./'ZED Depth Viewer'提示:./ZED Depth Viewer: error while loading shared libraries: libGLEW.so.1.13: cannot open shared object file: No such file or directory
安装libGLEW 命令如下:
$ sudo apt-cache search libGLEW
$ sudo apt-get install glew-utils可能安装的不是libGLEW1.13版本,我们可以软连接
$ cd /usr/lib/x86_64-linux-gnu/
$ sudo ln -s libGLEW.so.2.0.0 libGLEW.so.1.13之后运行ZED Depth Viewer 还可能缺少依赖库安上面的方式安装即可
版权声明:本文为qingdu007原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。