From fc0d845689514ca372acd3669b0224144e1d552c Mon Sep 17 00:00:00 2001 From: Endre Simo Date: Tue, 5 Feb 2019 10:49:58 +0200 Subject: [PATCH] Changed sleep time value --- examples/python/demo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/python/demo.py b/examples/python/demo.py index aecac93..3343d32 100644 --- a/examples/python/demo.py +++ b/examples/python/demo.py @@ -51,7 +51,7 @@ cap.set(cv2.CAP_PROP_FRAME_HEIGHT, 480) # Changing the camera resolution introduce a short delay in the camera initialization. # For this reason we should delay the object detection process with a few milliseconds. -time.sleep(0.3) +time.sleep(0.2) while(True): ret, frame = cap.read()