Not logged in.

From instruction: Looking

Code: Looking, for computer with built-in camera by jesusgollonet

it just obeys the first sentence, but there you go.

inspired by kevin bewersdorf spiritual netart diagram.
http://rhizome.org/editorial/19

import processing.video.*;

Capture cam;

void setup() {
    size (320, 240);
    cam = new Capture(this, width, height, 30);
    
}

void captureEvent(Capture myCapture) {
    cam.read();
}

void draw() {
    image(cam, 0, 0);
}

[download]

Written in Processing. Released under the GPLv3 license