Saturday 11 June 2011

Processing Easy Eye Tracker Plugin (PEEP)

Processing Easy Eye Tracker Plugin (PEEP)
It is, according to the development team, - "The probably easiest way on earth to develop stunningly looking eye tracking applications (and one of our most eye-appealing by-products we've created so far ... ;-)"

and here the link to download and test:

http://text20.net/node/14

and an example of how to use the eye tracker in Processing available at Text 2.0 homepage:

---------------------------------------

Import eyetracking.*;

EyeTrackingDevice device;

void setup() {
device = EyeTrackingDevice.open(this);
}


void draw() {
ellipse(device.x, device.y, 10, 10);
}

-----------------------------------------

No comments: