Willkommen auf unserem Seminar-Blog

Immer auf dem aktuellen Stand bleiben

Dieser Seminar-Blog befindet sich noch im Aufbau und wird in den kommenden Tagen entsprechend verfeinert.

Member Login

Lost your password?

Registration is closed

Sorry, you are not allowed to register by yourself on this site!

You must either be invited by one of our team member or request an invitation by email at viad.info {at} zhdk {dot} ch.

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);
}