Exemple d'openCV WaitKey

    if cv2.waitKey(1) & 0xFF == ord('q'): # wait for 1 millisecond
        break
Weary Wryneck