Hi all
I deployed the yolov3 on Jetson nano follow those lines
sudo apt-get update
git clone GitHub - AlexeyAB/darknet: YOLOv4 / Scaled-YOLOv4 / YOLO - Neural Networks for Object Detection (Windows and Linux version of Darknet )
cd darknet
wget https://pjreddie.com/media/files/yolov3.weights
wget https://pjreddie.com/media/files/yolov3-tiny.weights
sudo vi Makefile
make
cd darknet
And no problem for running yolov3, but the issue is no different to run between yolov3 and yolov3-tiny, both around 1.7 fps.
./darknet detector demo cfg/coco.data cfg/yolov3.cfg yolov3.weights -c 0
./darknet detector demo cfg/coco.data cfg/yolov3-tiny.cfg yolov3-tiny.weights -c 0
yolov3-tiny should be around 15 fps, right?
Any idea how to fix it?
Your help is appreciated!