xxxxxxxxxx
32
let cam;
let x = 0;
function setup() {
createCanvas(640, 480);
cam = createCapture(VIDEO, { flipped: true });
cam.hide();
}
function draw() {
// background(220);
// image(cam, 0, 0);
cam.loadPixels();
for (let y = 0; y < cam.height; y++) {
let p = y * width + width/2;
let i = 4 * p;
let r = cam.pixels[i + 0];
let g = cam.pixels[i + 1];
let b = cam.pixels[i + 2];
let a = cam.pixels[i + 3];
let c = [r, g, b, a];
stroke(c);
point(x, y);
}
x++;
if(x > width) x = 0;
}