I\'m using opencv 2.4.7 on ubuntu 12.04. I\'m programming with python and I have a problem when i run this script:
import cv2 img = cv2.imread(\'34762092361
Adding a cv2.waitKey(1) after you destroy the window should work in this case.
cv2.imshow('imgae',img) cv2.waitKey(0) cv2.destroyAllWindows() cv2.waitKey(1)