I’m working on an C++ app which uses opencv for some data manipulation and visualization. I’m using three to four cvShowImage() statements to visualize the data. I’ve recently noticed, that only the window which has focus, will be updated constantly after each cvShowImage() call. All the other windows only get updated infrequently. Is there a way to make sure that all opencv windows get refreshed and updated?
I’m working on an C++ app which uses opencv for some data manipulation and
Share
If you don’t already, I would suggest issuing a
cvWaitKey(30)after eachcvShowImage()and not only once after the last one. Or you could try displaying all the images in one window.