We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexSuggestions & BugsSoftware Bugs › Intel Mac/Firewire iSight issue
Page Index Toggle Pages: 1
Intel Mac/Firewire iSight issue (Read 1276 times)
Intel Mac/Firewire iSight issue
Apr 6th, 2007, 7:36pm
 
Starting up a Firewire iSight works fine when the .pde is compiled, but if you want to change the settings at any time, the video becomes distorted and zooms into the top left part of the screen. I haven't been able to work around this bug as of yet. The built in iSight is not distorted. I don't know if there is the same problem on the PowerPC computers. I am using an Intel iMac with a built in iSight and a Firewire iSight connected.

To test out this bug, just use the script below and click to change the settings.
Code:

import processing.video.*;
Capture myCapture;

void setup() {
size(200, 200);
myCapture = new Capture(this, width, height, 30);
}

void draw() {
if(myCapture.available()) {
// Reads the new frame
myCapture.read();
}
image(myCapture, 0, 0);
}
void mousePressed() {
myCapture.settings();
}
Re: Intel Mac/Firewire iSight issue
Reply #1 - Apr 20th, 2007, 2:31pm
 
already reported:
http://dev.processing.org/bugs/show_bug.cgi?id=496
Page Index Toggle Pages: 1