Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Capture#start() fails without default renderer #2247

Closed
ybakos opened this issue Dec 4, 2013 · 2 comments
Closed

Capture#start() fails without default renderer #2247

ybakos opened this issue Dec 4, 2013 · 2 comments
Assignees
Labels

Comments

@ybakos
Copy link
Contributor

ybakos commented Dec 4, 2013

When using some webcams in P2D/P3D modes, the call of Capture#start() never returns. Works fine with the default renderer. Have tested this on multiple machines with the same camera. Capture.list() never returns either.

Processing 2.1
OSX 10.8
Creative GestureCam (Intel/Creative Labs Gesture Recognition Camera).

Sample code to reproduce:

import processing.video.*;

Capture video;

void setup() {
  size(640, 680, P3D); // without the renderer argument, works fine.
  video = new Capture(this, 640, 480, 30);
  video.start(); // this function never returns
  println("Capture#start() returned.");
}

void draw() {
  background(33);
  if (video.available()) video.read();
  image(video, 0, 0);
}
@codeanticode
Copy link
Member

moved to the processing-video repo: processing/processing-video#2

@github-actions
Copy link

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jun 16, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

2 participants