raspberry:camera

Module Caméra

Page en cours de construction…

Pour connecter le module caméra à une Raspberry Pi, il faut :

  • Brancher le module caméra correctement à une Raspberry Pi.
  • Allumer la Raspberry Pi.
  • Aller dans le menu principal pour ouvrir Raspberry Pi Configuration.
  • Dans la table des Interfaces, autoriser Camera et valider.
  • Redémarer la Raspberry Pi.

Pour installer la bibliothèque python picamera, il suffit de taper dans le termial :

sudo apt-get update
sudo apt-get install python-picamera python3-picamera

ou

sudo pip install picamera
photo.py
from picamera import PiCamera
from time import sleep
 
camera = PiCamera()
 
camera.start_preview()
sleep(5)
camera.capture('/home/pi/Desktop/image.jpg')
camera.stop_preview()
video.py
from picamera import PiCamera
from time import sleep
 
camera = PiCamera()
 
camera.start_preview()
camera.start_recording('/home/pi/Desktop/video.h264')
sleep(5)
camera.stop_recording()
camera.stop_preview()

Pour installer la bibliothèque python cv2, il suffit de taper dans le termial :

pip install opencv-contrib-python
pip install opencv-contrib-python-headless
  • raspberry/camera.txt
  • Dernière modification : 14/10/2020 17:36
  • de fjiang