1
0

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 1 year has passed since last update.

Momoを使ってRaspberry Pi 映像のリアルタイム配信

Last updated at Posted at 2022-04-09

PythonでOpenCVを使って、カメラの映像を取得し、それをVNC経由で見る。ということをしているのですが、動作が遅く、10fpsも出ていないと感じていたので、試しにMomoを使ってみたら、驚きの速さと低遅延でした。
ただし、OpenCVで加工とか画像認識とか出来ないので、見るだけですが。

そこで、その方法について、簡単にまとめて見ました。

動作環境

・Raspberry Pi B4(4GB OS:Bullseye 32bit)
・Camera Module V1

インストール

LXTarminalからインストールします。

~$ wget  https://github.com/shiguredo/momo/releases/download/2022.1.0/momo-2022.1.0_raspberry-pi-os_armv7.tar.gz
~$ tar -zxvf momo-2022.1.0_raspberry-pi-os_armv7.tar.gz

以上で、インストールが終わりました。

テスト配信

LXTarminalで次のように入力します。

~$ cd momo-2022.1.0_raspberry-pi-os_armv7
~$ ./momo --no-audio-device test

これで、配信開始となります。
同じネットワークに繋がっている端末のブラウザで、http://192.168.*.*:8080/html/test.htmlを開き、次の画面が表示されていれば、OKです。(*.*にはご自身のRaspberry Piのアドレスを入れて下さい。)
スクリーンショット 2022-04-09 17.59.41.png
Connectボタンを押せば、ラズパイからの映像を見る事ができます。
スクリーンショット 2022-04-09 18.01.47.png

参考記事

1
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?