Video Projection System
For the 100th Gonnagle performance I designed a ‘live video drawing tool’ using webcam, LED spots and processing app..
Software has been written in Processing.. pretty straightforward.. Especially the filters are simple to use but very powerfull.. In the application they are controlled using a midi controller (Korg NanoKey)
void draw() {
background(255);
if (cam.available() == true) {
cam.read();
}
if (useRotate) {
translate(width/2, height/2);
rotate(PI);
translate(-width/2, -height/2);
}
image(cam, 0, 0);
if (useBW) filter(THRESHOLD, constrain(thresholdLevel, 0, 1));
if (useInvert) {filter(INVERT); fill(0);}
else fill(255);
if (useBlur) filter(BLUR,1);
if (useRotate) {
translate(width/2, height/2);
rotate(PI);
translate(-width/2, -height/2);
}
}
more on Mumbai
Hexapod in the press
IEEE Pervasive Computing magazine recently had an article featuring the hexapod..
TechFest 2012
Together with PLANETART and FullFormFreedom invited to show some of the robots at the TechFest 2012 festival in Mumbai, India.
Dancing Man Project
Here’s the making of- clip of the dancing man robot. Although the project is still very much under construction, it gives a good clue where it’s going…
E-Pulse Festival Breda
Full show at the E-Pulse Festival with ‘Pix’, the PizzaPlotter, ColorChaser. Also together with Wout a performance with the FirePlotter.



