Hi oscargot, first of all I want to thank you for your good example. It works for me right away. Now to your problem: Since you did the most common error in OpenCV rendering ( to forget about the cvWaitKey( ) -statement a solution is easy: if you change your loop to: while( 1 ) { cvWaitKey( 10 ); };...