xxxxxxxxxx
44
let video;
let img;
let cards = [];
function preload() {
img = loadImage("eye.png");
img1 = loadImage("Etteilla.png");
img2 = loadImage("1Nuit.png");
img3 = loadImage("1Propos.png");
img4 = loadImage("Depouillement.png");
img5 = loadImage("Eclairissement.png");
cards = [img4, img2, img5];
}
function setup() {
createCanvas(500, 400);
video = createCapture(VIDEO);
video.size(500, 400);
video.hide();
frameRate(4);
}
function draw() {
background(255);
image(video, 0, 0, 500, 400);
image(img, 220, 70);
randomCard = random(cards);
//image(img2, width/2, 260);
image(img1, 150, 260);
image(img3, 320, 260);
image(randomCard, 235, 260);
image(randomCard, 235, 260);
if (frameCount > 40 ) {
filter(INVERT);
}
}