YOLOv7 on Jetson Nano

YOLOv7

This article explains how to run YOLOv7 on Jetson Nano, see this article for how to run YOLOv5.

To begin, we need to install the PyTorch library available in python 3.8, as well as the YOLOv5 article. The difficult part ends here!

Then YOLOv7 is installed.

git clone https://github.com/WongKinYiu/yolov7
cd yolov7
python3.8 -m pip install -r requirements.txt
python3.8 detect.py --source 0Code language: Bash (bash)

It seems that when I run YOLOv7 with Jetso Nano, I only get about 1.3 FPS.

That’s all.