// Learning Processing
// Daniel Shiffman
// http://www.learningprocessing.com
// Example 16-1: Display video
// Step 1. Import the video library
import processing.video.*;
// Step 2. Declare a Capture object
Capture video;
void setup() {
size(320,240);
// Step 3. Initialize Capture object via Constructor
// video is 320 x 240, @15 fps
video = new Capture(this,320,240,15);
}
void draw() {
// Check to see if a new frame is available
if (video.available()) {
// If so, Step 4. Read the image from the camera.
video.read();
}
// Step 5. Display the video image.
image(video,0,0);
}
Need help VDIG…………………….. is there any way to run this,
it is asking for VDIG……..
Comment by Stefan. — December 30, 2009 @ 10:08 pm
If you are on windows you will need a vdig. You can download one here:
http://www.eden.net.nz/7/20071008/
Comment by Daniel Shiffman — January 4, 2010 @ 12:23 pm