Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to silence OpenCV "Camera dropped frame"

Tags:

opencv

Under Mac OS X, opencv complains that the camera drops frames and writes the following messages: "Camera dropped frame!".

Anybody know how to get rid of this warning?

like image 682
seb Avatar asked Jun 30 '11 15:06

seb


1 Answers

Looking at the code it seems to be written to cout and not just in debug.

Easiest way (if you are on Windows) is to build your app as system=win rather than console so there is no output.

Or you could fix the code and recompile (and submit a patch) !

like image 79
Martin Beckett Avatar answered Nov 13 '22 04:11

Martin Beckett