-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcamera.py
43 lines (30 loc) · 803 Bytes
/
camera.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import cv2
import time
import os
import shutil
from datetime import datetime
ques = int(input())
output_directory = "./Direct"
shutil.rmtree(output_directory)
os.mkdir(output_directory)
webcam = cv2.VideoCapture(0)
start_time = time.time()
if not webcam.isOpened():
print("Could not open webcam")
exit()
while webcam.isOpened():
status, frame = webcam.read()
if status:
folder_path = './Direct'
now = datetime.now()
now0 = now.strftime('%Y-%m-%d_%H-%M-%S')
cv2.imshow("test", frame)
cv2.imwrite(f"{folder_path}/{now0}.jpg", frame)
print(">>Store Complete")
if time.time() - start_time > ques:
break
if cv2.waitKey(1) & 0xFF == ord('q'):
break
time.sleep(2)
webcam.release()
cv2.destroyAllWindows()