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)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
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); } } |
Write a Reply or Comment