compatibility corrections

This commit is contained in:
Alexander Mordvintsev 2012-05-28 09:25:08 +00:00
parent e0c1fb5f76
commit a61b730238

View File

@ -75,8 +75,9 @@ if __name__ == '__main__':
else:
task = DummyTask(process_frame(frame, t))
pending.append(task)
ch = cv2.waitKey(1)
ch = 0xFF & cv2.waitKey(1)
if ch == ord(' '):
threaded_mode = not threaded_mode
if ch == 27:
break
cv2.destroyAllWindows()