Table des matières

Module Caméra

Page en cours de construction…

Configuration

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

Bibliothèque picamera

Documentation de la bibliothèque picamera

Installation

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

Premiers Codes

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()

Bibliothèque opencv-python

Documentation de la bibliothèque opencv-python

Installation

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