Open JJavier98 opened 4 years ago
In demo.py we can subsitude lines 71 and 72:
boxs = yolo.detect_image(image)[0] confidence = yolo.detect_image(image)[1]
for:
boxs,confidence = yolo.detect_image(image)
to double the efficiency of the execution.
In demo.py we can subsitude lines 71 and 72:
boxs = yolo.detect_image(image)[0] confidence = yolo.detect_image(image)[1]
for:
boxs,confidence = yolo.detect_image(image)
to double the efficiency of the execution.