xxxxxxxxxx
24
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() {
for(var i=0;i<snapshots.length;i++){
tint(255,50);
image(snapshots[i],0,0);
}
// tint(255,0,150);
// image(video,mouseX,0);
}