xxxxxxxxxx
54
// part of this code by Daniel Shiffman - The Coding Train
let capture;
let poseNet;
let eyelX = 0;
let eyelY = 0;
function setup() {
createCanvas(windowWidth, windowHeight);
capture = createCapture(VIDEO);
capture.size(windowWidth, windowHeight);
capture.hide();
poseNet = ml5.poseNet(capture, modelReady);
poseNet.on('pose', gotPoses);
colorMode(HSB);
}
function gotPoses(poses) {
//console.log(poses);
if (poses.length > 0) {
let eX = poses[0].pose.keypoints[1].position.x;
let eY = poses[0].pose.keypoints[1].position.y;
eyelX = lerp(eyelX, eX, 0.5);
eyelY = lerp(eyelY, eY, 0.5);
}
}
function modelReady() {
//console.log('Model Ready!');
}
function draw() {
image(capture, 0, 0, windowWidth, windowHeight);
//filter(GRAY);
filter(THRESHOLD);
noFill();
//fill(frameCount%360,70,70);
stroke (frameCount%360,100,100);
strokeWeight(8);
ellipse(eyelX, eyelY, 80);
}
function mousePressed() {
let fs = fullscreen();
fullscreen(!fs);
}
function windowResized() {
resizeCanvas(windowWidth, windowHeight);
capture.size(windowWidth, windowHeight);
}