Skip to content

Instantly share code, notes, and snippets.

View rangerTech24's full-sized avatar
๐Ÿ˜Ž

rangerTech24

๐Ÿ˜Ž
View GitHub Profile
@FutureSharks
FutureSharks / raspberrypi-picamera-motion-detection.py
Last active April 18, 2025 10:02
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()