commit 2b829ddf60fe1226b67e441bcb2555edb787d695 parent 0287e098102e141cdc444b274d73b5d9f40e62be Author: Marcel <MTRNord@users.noreply.github.com> Date: Sun, 9 Oct 2016 16:36:11 +0200 Little Fix Diffstat:
| M | scripts/stage3_analyseVideo.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/stage3_analyseVideo.py b/scripts/stage3_analyseVideo.py @@ -20,7 +20,7 @@ args = parser.parse_args() cap = cv2.VideoCapture(args.video) while not cap.isOpened(): - cap = cv2.VideoCapture(options.video) + cap = cv2.VideoCapture(args.video) cv2.waitKey(1000) print "Wait for the header"