digiphysical works

colorful

Filed under: Uncategorized — tjerk February 19, 2010 @ 6:36 pm

bg_happy

Presentation WTMC workshop (in .pdf)

Filed under: conference, presentation, theory — tjerk January 26, 2010 @ 2:04 pm

wtmc-presentation001

The presentation for the WTMC school, January 2010

timescape of my new living room

Filed under: Processing, coding, visuals — tjerk December 22, 2009 @ 5:36 pm

timescape_livingroom_21_12_2009

Method

- set up webcam

- start Processing prog.

- set pixelsize in prog to 1

- saveFrame when frame is filled.

- press ‘run’

- go about and do your daily stuff

- after an hour or two, watch the result.

browser wars on my desktop

Filed under: glitch — tjerk @ 3:39 pm

browser-wars

what to think of this? Should I then finally switch to chrome?

circle software

Filed under: coding, video, visuals — tjerk September 18, 2009 @ 12:40 pm

A first comparison between two software apps: Processing and Elise. (more to come). In Processing, the trouble I often experience is the missing relation between code and action: between first thinking in code before checking the result visually). In this small experiment, the assignment was to create a circle using repetitive patterns. As you can see in Elise, by simply creating one branch of the LSystem, a direct visual feedback is given on what you have crated. By altering the angle or the number of iteration, patterns start emerging and visuals are born.

Circles in Processing
picture-10

animated version:

Processing Circles Simple Math from tjerk timan on Vimeo.

code:

(more…)

entity in red

Filed under: Processing, coding, video, visuals — tjerk September 4, 2009 @ 4:26 pm

entity-in-red-and-black

This video shows an exploration of interactive coded visuals. In this case, the animation is recorder and reacts to mouse_Input. These variable will be replaced soon by sensors. This is the code:

(more…)

red blocks

Filed under: Processing, coding, visuals — tjerk September 2, 2009 @ 2:16 pm

0058

purle circles

Filed under: Processing, coding, visuals — tjerk @ 1:58 pm

0034

less time

Filed under: coding, video — tjerk August 14, 2009 @ 1:32 am

meintime

(still from video app described below)

(find software at www.processing.org)

import processing.video.*;
Capture myCapture;
int a=3; //stepsize x
int b=360; //stepsize y
int x=0;
int y=0;
int xres = 480;
int yres = 360;
int s = second();
void setup(){
size((2*xres+50) , yres);
myCapture = new Capture(this, xres, yres, 25);
}
void captureEvent(Capture myCapture) {
myCapture.read();
}
void draw(){
image(myCapture, 0, 0);

loadPixels();

if(true){
x+=a;
int dx = xres+50+x;
int dy =y;
copy(x,y, a, b, dx,dy, a, b);
if(x>xres){
x=0;
y+=b;
}
if(y>=yres) {
y=0;
saveFrame(”####.jpeg”);
}
}
}

forloop trouble

Filed under: coding — tjerk May 3, 2009 @ 8:49 pm

0447.jpeg

Next Page >>>