Skip to content

Instantly share code, notes, and snippets.

View Ishidres's full-sized avatar

Ishidres

View GitHub Profile
@Ishidres
Ishidres / raspberrypi-picamera-motion-detection.py
Created May 7, 2020 16:38 — forked from FutureSharks/raspberrypi-picamera-motion-detection.py
A simple example of using the Raspberry Pi Camera Module and python picamera for motion detection
#!/usr/bin/python
import picamera
import cv2
import io
import numpy as np
import imutils
camera = picamera.PiCamera()