thanks for your reply and the library
what do you mean with "when used normally" ?
i copied your code from your "Getting Started with Capture" demo
but i am capturing 640 x 480 pixels and mask the video with one image:
- void draw() {
offscreen.beginDraw();
offscreen.image(bgImg,0,0);
if (cam.available() == true) {
cam.read();
camImg = cam;
camImg.mask(maskImg);
offscreen.image(camImg,0,0);
offscreen.endDraw();
image(offscreen,0,0); - }
}
it seem that gsvideo-0.5.0.1. runs more stable so maybe i could use that version
is there a big difference in capturing performance between version 0.5.0.1 and 0.7 ?
i would like to capture 1280 x 720 pixel as the camera provides full hd but its to heavy for my cpu
and i cant find any working resolutions between 640 x 480 and 1280 x 720
best whishes