xxxxxxxxxx
15
let capture;
let poseNet;
function setup() {
createCanvas(500, 500);
capture = createCapture(VIDEO);
capture.hide();
}
function draw() {
let aspectRatio = capture.height/capture.width;
image(capture, 0, 0, width, width * aspectRatio);
filter(INVERT);
}