申请的计算棒到货了,是NCS2,据说性能在1代基础上提升了8倍,照片略。
我看到已经有网友写了如何在windows上安装openvino工具,那我就写一下如何在树莓派上安装吧。
首先需要一个不小于32G的TF卡来安装树莓派系统,安装一个较新新版本的raspbian(现在改名叫做raspios),我选取的版本是2020-05-27-raspios-buster-full-ARMhf。树莓派的硬件选取倒无所谓,树莓派3B或者树莓派4B都是不错的选择。
至于树莓派系统的安装在这里不累述了,说一下openvino的环境准备吧。
按照intel网站介绍,在linux下的环境要求是
OpenCV 3.4 or higher
GNU Compiler Collection (GCC)* 3.4 or higher
CMake* 2.8 or higher
Python* 3.5 or higher
基本安装步骤如下:
1、确认环境是否具备
树莓派自带python、gcc工具,版本确认如下
pi@raspberrypi:~$ python3 --version
Python 3.7.3
pi@raspberrypi:~$ gcc --version
gcc (Raspbian 8.3.0-6+rpi1) 8.3.0
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
cmake可以直接安装
sudo apt install cmake
安装完成后,版本是
pi@raspberrypi:~$ cmake --version
cmake version 3.18.0-rc1
CMake suite maintained and supported by Kitware (kitware.com/cmake).
sudo pip3 install opencv-python
sudo pip3 install opencv-contrib-python
当然opencv还需要一些支持文件,可以通过apt-get安装
sudo apt-get install libhdf5-dev libatlas-base-dev libjasper-dev libqt4-test libqtgui4 libqtwebkit4 libqt4-test python3-pyqt5
可以看到cv安装也成功了。版本是4.1.1
2、下载和安装OpenVINO工具
安装tgz文件方法和其它软件基本类似
sudo mkdir -p /opt/intel/openvino
sudo tar -xf l_openvino_toolkit_runtime_raspbian_p_2020.3.220.tgz --strip 1 -C /opt/intel/openvino
3、设置环境
临时使用source /opt/intel/openvino/bin/setupvars.sh
使用echo "source /opt/intel/openvino/bin/setupvars.sh" >> ~/.bashrc命令
启动后可以看到命令行中,多出[setupvars.sh] OpenVINO environment initialized字样
4、增加u***规则
执行sh /opt/intel/openvino/install_dependencies/install_NCS_udev_rules.sh
|