Skip to content

Instantly share code, notes, and snippets.

View kmsquire's full-sized avatar

Kevin Squire kmsquire

  • SecondSpectrum
  • Los Angeles
View GitHub Profile
@kmsquire
kmsquire / webcam.jl
Last active August 29, 2015 14:06 — forked from SimonDanisch/webcam.jl
import VideoIO
using GLPlot, Reactive, GLAbstraction
camera = VideoIO.opencamera()
img = VideoIO.read(camera)
# Just for fun, lets apply a laplace filter:
kernel = [-1 -1 -1;
-1 8 -1;