xxxxxxxxxx
41
let myVideo
//nose x,y from faceApi
let noseX
let noseY
//nose x,y from faceApi
let mouthX
let mouthY
// index x, y from poseNet 2.0
let indexX
let indexY
let coughSneeze = []
let blow = []
function preload(){
// preload all the sounds and append them to their respective lists
}
function setup() {
createCanvas(400, 400);
// initiate createCapture
// initiate faceApi
// initiate posenet
}
function gotResults(){
}
function draw() {
background(220);
}