xxxxxxxxxx
let capture;
function setup() {
createCanvas(windowWidth, windowHeight);
//Webcamキャプチャー設定
capture = createCapture(VIDEO);
capture.size(640, 480);
capture.hide();
}
function draw() {
background(0);
//キャプチャーした映像を画面中央に描画
imageMode(CENTER);
image(capture, width/2, height/2, 640, 480);
}