Skip to content

Instantly share code, notes, and snippets.

@inflrscns
inflrscns / image-to-v4l2loopback.py
Created October 8, 2017 23:06 — forked from TimSC/image-to-v4l2loopback.py
Send image data to v4l2loopback using python. Remember to do "sudo modprobe v4l2loopback" first! Released under CC0 by Tim Sheerman-Chase, 2013
#Send image data to v4l2loopback using python
#Remember to do sudo modprobe v4l2loopback first!
#Released under CC0 by Tim Sheerman-Chase, 2013
import fcntl, sys, os
from v4l2 import *
import time
import scipy.misc as misc
import numpy as np