This is my blog from my first semester at ITP. I have since switched to a Notion blog which you can view here.
Intro to Physical Comp:
Intro to Comp Media:
Week 9 → Body
This week I made a disco simulator - it’s detects if the user is disco dancing and stays activated as long as they keep dancing. Here’s a demo:
One boolean ‘discoMode’ controls the activation of several features - the music, a changing tinted color overlay, a disco ball that lowers, and sunglasses that follow the user’s face.
Several booleans track the position of the users left and right hands. If the user raises either hand above the nose keypoint, the program counts it as “pointing up.” If they come within 100 pixels of the opposite hip, the program counts it as “pointing down.”
discoMode is activated when the program detects that either the left or right hand has completed a sequence of at least three ‘flips’ (i.e. up-down-up). If more than 2.5 seconds pass between flips, discoMode is deactivated.
ChatGPT helped fill out all of the logic.
let pose = poses[i];
let leftWrist = pose.keypoints[9];
let rightWrist = pose.keypoints[10];
let nose = pose.keypoints[0];
let leftHip = pose.keypoints[11];
let rightHip = pose.keypoints[12]
leftPointingUp = leftWrist.y < nose.y;
leftPointingDown = Math.abs(leftWrist.y - leftHip.y) < 100;
rightPointingUp = rightWrist.y < nose.y;
rightPointingDown = Math.abs(rightWrist.y - rightHip.y) < 100;
It was also interesting to experiment with the ps.js sound library. I created snippets of 6 disco songs In Premiere and loaded them in an array in setup() (based on the Coding Train video). Whenever discoMode is activated, a random song is chosen. It takes some time to load up on the songs initially - I wonder if there are any better ways to handle the loading process.