diff --git a/labyrinthe/6-jumeaux/test/cam_bille-test.py b/labyrinthe/6-jumeaux/test/cam_bille-test.py index 93fca79..724f62f 100644 --- a/labyrinthe/6-jumeaux/test/cam_bille-test.py +++ b/labyrinthe/6-jumeaux/test/cam_bille-test.py @@ -1,6 +1,5 @@ import os, time import numpy as np -import matplotlib.pyplot as plt import cv2 as cv ############################################################################### @@ -62,7 +61,7 @@ while cam.isOpened(): # Sortir echap = cv.waitKey(1) # Saisie clavier avec un timeout de 1 ms - if echap & 0xFF == ord('q') or key == 27 : + if echap & 0xFF == ord('q') or echap == 27 : break ###############################################################################