/** * Getting Started with Capture. * * Reading and displaying an image from an attached Capture device. */ import processing.video.*; Capture cam; void setup() { size(640, 480); String[] cameras = Capture.list(); if (cameras == null) { println("Failed to retrieve the list of available cameras, will try the default..."); cam = new Capture(this, 640, 480); } else if (cameras.length == 0) { println("There are no cameras available for capture."); exit(); } else { println("Available cameras:"); printArray(cameras); // The camera can be initialized directly using an element // from the array returned by list(): cam = new Capture(this, 640, 480, cameras[1]); // Or, the settings can be defined based on the text in the list //cam = new Capture(this, 640, 480, "Built-in iSight", 30); // Start capturing the images from the camera cam.start(); } } void draw() { if (cam.available() == true) { cam.read(); } image(cam, 0, 0, 640, 480); }