Homework 6
a. Daisies 2.0
The first is an update on the “daisies” application that was made by Theo in my first setFrame() computer vision class. Please think about what a 2009 version of this kind of application might look like.
Vampires are arranged in a grid and appear when presence is detected in that location. Made in collaboration with Jennifer Cotton and Nick Hardeman.
b. Hulahoop
make a computer vision application that uses a very specific kind of action – such as moving in a circle (as in the spinning vinyl application) or this brainfu*k body interpreter
ofSetColor(190, 190, 0); ofRect(hoopLocX + 20 - 150 + (50 * sin(hoopAngle) ), hoopLocY + 20 - ((shimPct * 3) * 300.f), 300, 10); ofSetColor(220, 220, 0); ofRect(hoopLocX + 20 - 150 + (50 * sin(hoopAngle) ), hoopLocY + 20 - ((shimPct * 3) * 300.f), 300, 5);
The code detects the middle of the body and places a hulahoop. The speed of the movement affects the speed of the hoop. When there is no movement the hoop falls down. Made in collaboration with Jennifer Cotton and Nick Hardeman.