-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollect.py
67 lines (49 loc) · 1.64 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import cv2
import uuid
import os
def config_title(label, current, limit):
return "Collecting {} ({} of {}). Press 'c' to capture.".format(label, current, limit)
def collect(limit, labels, folder):
# Setup folders
if not os.path.exists(folder):
os.mkdir(folder)
for label in labels:
path = os.path.join(folder, label)
if not os.path.exists(path):
os.mkdir(path)
limit = int(limit)
cap = cv2.VideoCapture(0)
print('Opening camera...')
current = 1
labelIndex = 0
title = config_title(labels[labelIndex], current, limit)
while True:
ret, frame = cap.read()
cv2.imshow('tfod', frame)
cv2.setWindowTitle('tfod', title)
keypressed = cv2.waitKey(1)
if keypressed == ord('c'):
# prevent labelIndex exceeding labels array
if labelIndex == len(labels):
continue
# capture current image
imgname = os.path.join(folder, labels[labelIndex], labels[labelIndex] + '.' + '{}.jpg'.format(str(uuid.uuid1())))
cv2.imwrite(imgname, frame)
# queue next image
current += 1
# if next image is over the limit do a reset and go the next label
if current > limit:
current = 1 # reset
labelIndex += 1 # next label
# if all labels are discovered
if labelIndex == len(labels):
title = "All labels are captured. Please press 'q' to quit"
else:
title = config_title(labels[labelIndex], current, limit)
elif keypressed == ord('q'):
break
print('Closing camera')
print('Images saved in {}'.format(os.path.join(os.getcwd(), folder)))
cap.release()
cv2.destroyAllWindows()
cv2.waitKey(1)