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 3 years have passed since last update.

ubuntu20.04でOAK-D Liteを動かす

Last updated at Posted at 2021-12-31

はじめに

LuxonisからOAK-D-Liteが届いたのでubunntu20.04LTSでPythonデモを動かしてみた

以下商品ページ

環境

OS : ubuntu20.04LTS
Python : 3.8

準備

必要なパッケージのインストール

sudo wget -qO- http://docs.luxonis.com/_static/install_dependencies.sh | bash

DepthAI APIのインストール

$ python3 -m pip install depthai

Pythonパッケージのインストール

$ git clone https://github.com/luxonis/depthai.git
$ cd depthai/
$ ./install_requirements.py 

udevルールの追加

$ echo 'SUBSYSTEM=="usb", ATTRS{idVendor}=="03e7", MODE="0666"' | sudo tee /etc/udev/rules.d/80-movidius.rules

デモの実行

$ python3 depthai_demo.py 

参考

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?