xxxxxxxxxx
33
var video;
var button;
var snapshots=[];
function setup() {
createCanvas(800, 240);
background(50);
video=createCapture(VIDEO);
video.size(320,240);
button=createButton('snap');
button.mousePressed(takesnap);
// video.hide();
}
function takesnap(){
snapshots.push(video.get());
// image(video,0,0);
}
function draw() {
var w=80;
var h=60;
var x=0;
var y=0;
for(var i=0;i<snapshots.length;i++){
tint(255,50);
image(snapshots[i],x,y,w,h);
x=x+w;
if(x>width){
x=0;
y=y+h;
}
}
// tint(255,0,150);
// image(video,mouseX,0);
}