LoginSignup
0
0

More than 3 years have passed since last update.

Raspberry Pi で、OpenModelZooのデモをインストールする

Posted at

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

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0