diff --git a/lib/loadScripts.js b/lib/loadScripts.js index aaf173b..3cdc583 100644 --- a/lib/loadScripts.js +++ b/lib/loadScripts.js @@ -1,13 +1,13 @@ //Load MediaPipe libraries when needed -//Pose Dectection +//Pose Detection const mpPoseButton = document.getElementById("startPoseDetectButton"); mpPoseButton.addEventListener("click", () => loadScript('mpPose.js',true)); -//Hand landmark dectection +//Hand landmark detection const mpHandButton = document.getElementById("startHandLandmarks"); mpHandButton.addEventListener("click", () => loadScript('mpHand.js',true)); -//Face landmark dectection +//Face landmark detection const mpFaceButton = document.getElementById("startFaceLandmarks"); mpFaceButton.addEventListener("click", () => loadScript('mpFace.js',true));