Skip to content

Instantly share code, notes, and snippets.

@pokutuna
Created October 24, 2012 17:08
Show Gist options
  • Save pokutuna/3947368 to your computer and use it in GitHub Desktop.
Save pokutuna/3947368 to your computer and use it in GitHub Desktop.
import hypermedia.video.*;
OpenCV opencv;
void setup() {
size(640, 480);
opencv = new OpenCV(this);
opencv.capture(width, height);
}
void draw() {
opencv.read();
image(opencv.image(), 0, 0);
ellipse(100, 100, 50, 50);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment