Installation Playstation Eye
OSX
Um die Playstation Eye unter Mac OS X in Betrieb zu nehmen muss vorher der macam Treiber installiert werden. Danach muss die Maschine neu gestartet werden. Mit dem Befehl Capture.list() werden die verfügbaren Videodevices auf der Konsole aufgelistet.import processing.video.*; println(Capture.list());
Playstation Eye = [6] "Sony HD Eye for PS3 (SLEH 00201)"
Eingebaute iSight = [7] "USB Video Class Video"
import processing.video.*; Capture video; void setup() { size(320, 240); println(Capture.list()); // gib alle video devices auf der konsole aus // Playstation Eye video = new Capture(this,width,height,"Sony HD Eye for PS3 (SLEH 00201)",30); // eingebaute iSight // video = new Capture(this,width,height,"USB Video Class Video",30); } void draw(){ video.read(); image(video, 0,0); }