xxxxxxxxxx
67
let facemesh;
let video;
let predictions = [];
let canvas_w = 1000;
let canvas_h = 800;
let video_w = 640;
let video_h = 480;
let margin_left = 50;
let margin_top = 50;
function setup() {
createCanvas(canvas_w, canvas_h);
video = createCapture(VIDEO);
video.size(video_w, video_h);
facemesh = ml5.facemesh(video, modelReady);
// This sets up an event that fills the global variable "predictions"
// with an array every time new predictions are made
facemesh.on("predict", (results) => {
predictions = results;
});
// Hide the video element, and just show the canvas
video.hide();
background("purple");
}
function modelReady() {
console.log("Model ready!");
}
function draw() {
drawBackground();
image(video, margin_left, margin_top, video_w, video_h);
// We can call both functions to draw all keypoints
drawKeypoints();
drawForeground();
}
function drawForeground() {
circle(random(width), random(height), map(mouseY, 0, height, 0, 100));
}
function drawBackground() {
background("purple");
rect(random(width), 0, map(mouseX, 0, width, 10, 100), height);
}
// A function to draw ellipses over the detected keypoints
function drawKeypoints() {
for (let i = 0; i < predictions.length; i += 1) {
const keypoints = predictions[i].scaledMesh;
// Draw facial keypoints.
for (let j = 0; j < keypoints.length; j += 1) {
const [x, y] = keypoints[j];
push();
translate(margin_left, margin_top);
fill(random(255), 0, 0);
circle(x, y, random(10, 20));
pop();
}
}
}