-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollect.py
37 lines (26 loc) · 822 Bytes
/
collect.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
"""Scripts to collect images without running a detection."""
import sys
import os
import cv2
IMG_ADDR = str(os.getcwd())
counter = 0
cap_port = 0
cap = cv2.VideoCapture(cap_port)
cap.set(cv2.CAP_PROP_FRAME_WIDTH, 640)
cap.set(cv2.CAP_PROP_FRAME_HEIGHT, 480)
while cap.isOpened():
success, image = cap.read()
if not success:
sys.exit(
"""ERROR: Unable to read from webcam.
Please verify your webcam settings."""
)
counter += 1
# image = cv2.flip(image, 1)
# image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
cv2.imwrite(IMG_ADDR + "/image/Image" + str(counter) + ".png", image)
# Stop the program if the ESC key is pressed.
if cv2.waitKey(1) == 27:
break
cv2.imshow("Captured Image", image)
cv2.destroyWindow("Captured Image")