xxxxxxxxxx
32
let vid;
function setup() {
createCanvas(400, 400);
vid = createCapture(VIDEO);
vid.hide();
}
function draw() {
background(220);
// image(vid,0,0);
vid.loadPixels();
for(let i =0; i < vid.pixels.length; i+=4) {
}
for (let x = 0; x < width; x+= 10) {
for (let y = 0; y < height; y+= 10) {
let i = x+(y*width);
let r = vid.pixels[i];
let g = vid.pixels[i+1];
let b = vid.pixels[i+2];
let a = vid.pixels[i+3];
let colorFromVideo = vid.get(x, y);
fill(colorFromVideo);
rect(x, y, 40, 40);
}
}
}