vincentgong7 / VG_AlexeyAB_darknet

A forked AlexeyAB Darknet repo with extra convenient functions.

Home Page:https://darknet.gong.im

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Detection code

alsheabi opened this issue · comments

I'm just wondering what the diff Btw
!./darknet detector batch cfg/voc.data cfg/yolov4.cfg weights/yolov4.weights data/dog.jpg

and this

!./darknet detect cfg/yolov4.weights weights/yolov4.weights data/dog.jpg

also if I replace detector batch with detector test?

Hi @vincentgong7 ,
Is there any functions that can be used to batch inference? (process every 8 images at single GPU process)
thank you very much.

commented

In the source code, I found that batch detection is not really parallel detect. It also detect image one by one. I want to know if it is possible to input multiple images to the net at once,if possible, then multiple images will take the same time as one image.