購入したカメラモジュールはこちら。
Camera Module V2 – Raspberry Pi
https://www.raspberrypi.org/products/camera-module-v2/
カメラのセットアップ
LANポートとHDMIポートの間のコネクタに、接続面がHDMIポート側になるようにフラットケーブルを差し込む。
Raspberry Piにログインしてカメラインターフェースを有効にする。
1 2 3 |
$ ssh 192.168.16.21 Username: pi Password: raspberry |
1 2 |
$ sudo apt-get update $ sudo apt-get upgrade |
1 2 3 4 5 6 7 8 9 10 11 12 |
$ sudo raspi-config 5 Interfacing Options <Select> P1 Camera <Select> Would you like the camera interface to be enabled? <Yes> The camera interface is enabled <Ok> <Finish> Would you like to reboot now? <Yes> |
以下の動画が参考になる。
カメラの動作確認
Raspberry Piには4種類のアプリケーションが用意されている。
静止画撮影
1 |
$ raspistill -o test.jpg |
動画撮影
1 |
$ raspivid -o test.h264 |
Raspberry Pi Camera Module – Raspberry Pi Documentation
https://www.raspberrypi.org/documentation/raspbian/applications/camera.md