1 | initial version |
You need to implicitly create the window with the WINDOW_NORMAL flag
cv2.namedWindow('image',WINDOW_NORMAL)
you ca then resize it using e.g.
cv2.resizeWindow('image', 600,600)
(this should give a 10x demagnification of your image).
guy