1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Intel® Movidius™ Neural Compute Stickをラズパイで使えるようにする(メモ)

Last updated at Posted at 2018-09-16

#はじめに

Intel® Movidius™ Neural Compute Stickをラズパイで使用できるようにしたときのインストールメモ。

項目 内容 バージョン
OS Raspbian Stretch 2018-03-13
Hardware Raspberry Pi 3B

Raspbianのバージョンや、updateのタイミングでインストールの成否が起こるが、一からインストールした時のパッケージやmakeの前後関係の参考メモとして残しておく。この時のバージョンは2018-03-13で、現時点の最新ではない。

普段自分でよく使うものもインストールしているので、必ずしもIntel® Movidius™ Neural Compute Stickの開発に必須ではないものも含まれている。

NCSDKをインストールすると、OpenCVもインストールすることになる。この時のNCSDKはv1で、OpenCVは3.3.0がインストールされた。

Raspbian StretchのSDカードへの書き込みと起動、ネットワークの設定は完了しているものとする。


OS update, upgrade

sudo apt update
sudo apt upgrade

editor

sudo apt install emacs

NCS

mkdir ~/src
cd ~/src
git clone http://github.com/Movidius/ncsdk
cd ncsdk
make install
make examples

mplayer

sudo apt install mplayer

samba

sudo apt install samba
sudo emacs /etc/samba/smb.conf

     ...
     ...
     [global]
	workgroup = TERAHOME
     [homes]
	browseable = no
	read only = no
	create mask = 0640
	directory mask = 0750
     ...
     ...

sudo smbpasswd -a pi
sudo /etc/init.d/samba start

tensorflow

sudo apt install python3-pip python3-dev
sudo pip3 install tensorflow-1.3.1-cp35-none-linux_armv7l.whl

ncappzoo

sudo apt install python3-contextlib2

cd ~/src
git clone https://github.com/movidius/ncappzoo

mkdir tensorflow
cd tensorflow
git clone https://github.com/tensorflow/tensorflow
git clone https://github.com/tensorflow/models
export TF_SRC_PATH=~/src/tensorflow/tensorflow
export TF_MODELS_PATH=~/src/tensorflow/models

cd ~/src/ncappzo
make all

ImageMagick

sudo apt install imagemagick

twitter関連 (python)

sudo pip3 install twython
sudo pip3 install feedparser

alsa

sudo apt install alsa-utils sox libsox-fmt-all

PyQtGraph

sudo pip3 install PyQtGraph

PyAudio

sudo apt install python-pyaudio python3-pyaudio

MP3

sudo apt install mpg321

guvcview

sudo apt install guvcview

webcam

sudo apt install fswebcam

OpenJtalk

sudo apt install open-jtalk
sudo apt install open-jtalk-mecab-naist-jdic hts-voice-nitech-jp-atr503-m001
cd ~/src
wget https://sourceforge.net/projects/mmdagent/files/MMDAgent_Example/MMDAgent_Example-1.6/MMDAgent_Example-1.6.zip/download -O MMDAgent_Example-1.6.zip
unzip MMDAgent_Example-1.6.zip
sudo cp -r MMDAgent_Example-1.6/Voice/mei/ /usr/share/hts-voice

espeak

sudo apt install espeak
sudo apt install python3-espeak
1
3
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
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?