Skip to content

Instantly share code, notes, and snippets.

@Repulser
Repulser / terms.md
Created June 1, 2017 09:54
Rythm bot terms of service

You must agree to these terms in order to use Rythm bot

  • You accept all responsibility for streaming copyrighted material.
  • These terms may be changed without notice.

Modified 6/1/2017

@FutureSharks
FutureSharks / raspberrypi-picamera-motion-detection.py
Last active October 15, 2023 20:56
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()