is GS Video Capture and OPEN GL Compatible with Processing 1.5
in
Contributed Library Questions
•
10 months ago
Hi, Could someone show me how I need to edit this code I have created in Processing 1.5 so that it uses Open GL? Also are there any online tutors that teach Processing through Skype? Thanks
import codeanticode.gsvideo.*;
GSCapture cam;
void setup() {
size(640, 480);
cam = new GSCapture(this, 640, 480);
cam.start();
}
void draw() {
if (cam.available() == true) {
cam.read();
image(cam, 0, 0);
}
}
import codeanticode.gsvideo.*;
GSCapture cam;
void setup() {
size(640, 480);
cam = new GSCapture(this, 640, 480);
cam.start();
}
void draw() {
if (cam.available() == true) {
cam.read();
image(cam, 0, 0);
}
}
1