deep_sort_yolov3 icon indicating copy to clipboard operation
deep_sort_yolov3 copied to clipboard

Double efficiency in demo.py

Open JJavier98 opened this issue 4 years ago • 0 comments

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.

JJavier98 avatar Jun 25 '20 20:06 JJavier98