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.
IndexProgramming Questions & HelpVideo Capture,  Movie Playback,  Vision Libraries › Blobdetection without cam image on screen
Page Index Toggle Pages: 1
Blobdetection without cam image on screen (Read 746 times)
Blobdetection without cam image on screen
Sep 15th, 2007, 7:02pm
 
Whenever I try to stop blob detection from imputing the webcam image back onto the screen, the blobs just pile up.
Thus i assume it uses each incoming frame as a refresh to get rid of the previous drawn blobs.
How would i thus substitute the incoming webcam picture for a still background image, or simply get rid of it, while still blob tracking from the webcam.
ie. how do you print to screen the results of a blobtrack from a webcam, while not showing the original feed?
Re: Blobdetection without cam image on screen
Reply #1 - Sep 17th, 2007, 6:42pm
 
just delete
image(cam,0,0,width,height);
and replace it with
background(255);
in your draw()-method.

is that the problem?
Page Index Toggle Pages: 1