forked from wiibrew/pytorch-yolo2
-
Notifications
You must be signed in to change notification settings - Fork 8
/
demo.py
52 lines (46 loc) · 1.43 KB
/
demo.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
from utils import *
from darknet import Darknet
import cv2
def demo(cfgfile, weightfile):
m = Darknet(cfgfile)
m.print_network()
m.load_weights(weightfile)
print('Loading weights from %s... Done!' % (weightfile))
if m.num_classes == 20:
namesfile = 'data/voc.names'
elif m.num_classes == 80:
namesfile = 'data/coco.names'
else:
namesfile = 'data/names'
class_names = load_class_names(namesfile)
use_cuda = 1
if use_cuda:
m.cuda()
cap = cv2.VideoCapture(0)
if not cap.isOpened():
print("Unable to open camera")
exit(-1)
while True:
res, img = cap.read()
if res:
sized = cv2.resize(img, (m.width, m.height))
bboxes = do_detect(m, sized, 0.5, 0.4, use_cuda)
print('------')
draw_img = plot_boxes_cv2(img, bboxes, None, class_names)
cv2.imshow(cfgfile, draw_img)
cv2.waitKey(1)
else:
print("Unable to read image")
exit(-1)
############################################
if __name__ == '__main__':
if len(sys.argv) == 3:
cfgfile = sys.argv[1]
weightfile = sys.argv[2]
demo(cfgfile, weightfile)
#demo('cfg/tiny-yolo-voc.cfg', 'tiny-yolo-voc.weights')
else:
print('Usage:')
print(' python demo.py cfgfile weightfile')
print('')
print(' perform detection on camera')