Updates for video capture examples, new keywords.txt

This commit is contained in:
Casey Reas
2013-03-05 12:53:13 -08:00
parent 6b5eb6ae55
commit 1ee4d922e3
16 changed files with 122 additions and 58 deletions
@@ -24,8 +24,13 @@ int currentX = 0;
void setup() {
size(640, 480);
video = new Capture(this, width, height, 30);
video.start();
// This the default video input, see the GettingStartedCapture
// example if it creates an error
video = new Capture(this, width, height);
// Start capturing the images from the camera
video.start();
}
void captureEvent(Capture c) {