Only getting one active Window after re-install

asked 2017-07-18 10:22:08 -0600

I was using OpenCV3.2.0 with contrib as using ArUCo markers and using Python and i needed to re-install my OS. No problem with that - OS re-installed went fine (RPi flavour of Debian Jessie) and re-compilied opencv3.2.0 but now instead of getting 6 video windows on my screen when I run my program (one for each imgshow) - I'm only getting one which is anchored to top left and has icons on it inc left/right/up/down arrows

What have I done differently this time (and how can I get back to my old 6 separate windows)

regards

Simon

edit retag flag offensive close merge delete

Comments

does it look like this ?

in that case, you compiled it WITH_QT , and cv2.namedWindow("lalala", cv2.GUI_NORMAL) should disable any of it.

berak gravatar imageberak ( 2017-07-18 11:19:08 -0600 )edit

Thank you very much :) I had to use cv2.WINDOW_GUI_NORMAL from last answer from here but sorted now :)

Can you post your comment in the answer box please :)

SimpleSi gravatar imageSimpleSi ( 2017-07-19 15:48:22 -0600 )edit