Home > Mobile >  How to increase the detection speed of yolov3 as it takes 6 seconds to know the correct class?
How to increase the detection speed of yolov3 as it takes 6 seconds to know the correct class?

Time:09-22

Tried to change the color to gray but that didn't help so much: ImageGray = cv2.cvtColor(image,BGR2GRAY)

CodePudding user response:

Good question. Try

  1. resizing the images to a smaller size: reduce dataset resolution.
  2. use GPU
  • Related