OpenModelZooとは
オープン・モデルの動物園だ
https://github.com/opencv/open_model_zoo
Raspberry Pi でOpenVINOをインストールする
インストール方法
git clone https://github.com/opencv/open_model_zoo.git --branch 2019
cd open_model_zoo/demos
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-march=armv7-a" ../.
すべてのデモをビルドする
make all
あるいは 好きなデモをmakeする
make -j2 super_resolution_demo/
super_resolution_demoを使う
#まずはmodelをダウンロードする
wget https://download.01.org/opencv/2019/open_model_zoo/R3/20190905_163000_models_bin/single-image-super-resolution-1033/FP16/single-image-super-resolution-1033.xml
wget https://download.01.org/opencv/2019/open_model_zoo/R3/20190905_163000_models_bin/single-image-super-resolution-1033/FP16/single-image-super-resolution-1033.bin
/home/pi/build2/armv7l/Release/super_resolution_demo -m /home/pi/models/single-image-super-resolution-1033.xml -i small_size_picture.png -d MYRIAD