This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |