diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2023-04-22 23:23:31 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2023-04-22 23:23:31 +0530 |
commit | 4633e624fdc4e61928b8c7743d9bbd50c5d75a6a (patch) | |
tree | a70cb02e96274176785e04e309b059401bc69298 /face-detection/01_face_capture_dataset.py | |
parent | 95b861dc16d1a29200734fb42f4f4223d14d12f1 (diff) |
face-detection cleanup+Adding .gitignore
Diffstat (limited to 'face-detection/01_face_capture_dataset.py')
-rw-r--r-- | face-detection/01_face_capture_dataset.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/face-detection/01_face_capture_dataset.py b/face-detection/01_face_capture_dataset.py index 8836ce6..7860210 100644 --- a/face-detection/01_face_capture_dataset.py +++ b/face-detection/01_face_capture_dataset.py @@ -22,7 +22,7 @@ while(True): k = cv2.waitKey(100) & 0xff # Press 'ESC' for exiting video if k == 27: break - elif count >= 30: # Take 30 face sample and stop video capture + elif count >= 100: # Take 30 face sample and stop video capture break # Do a bit of cleanup print("\n [INFO] Exiting Program and cleaning up stuff") |