- 1. Description
- 2. Current Support Platform
- 3. Pretrained Model
- 4. Convert to RKNN
- 5. Python Demo
- 6. Android Demo
- 7. Linux Demo
- 8. Expected Results
The model used in this example comes from the following open source projects:
https://github.com/airockchip/yolov7
RK3566, RK3568, RK3588, RK3562
Download link:
./yolov7-tiny.onnx
./yolov7.onnx
Download with shell command:
cd model
./download_model.sh
Usage:
cd python
python convert.py <onnx_model> <TARGET_PLATFORM> <dtype(optional)> <output_rknn_path(optional)>
# such as:
python convert.py ../model/yolov7-tiny.onnx rk3588
# output model will be saved as ../model/yolov7.rknn
Description:
<onnx_model>
: Specify ONNX model path.<TARGET_PLATFORM>
: Specify NPU platform name. Support Platform refer [here](#2 Current Support Platform).<dtype>(optional)
: Specify asi8
orfp
.i8
for doing quantization,fp
for no quantization. Default isi8
.<output_rknn_path>(optional)
: Specify save path for the RKNN model, default save in the same directory as ONNX model with nameyolov7.rknn
Usage:
cd python
# Inference with PyTorch model or ONNX model
python yolov7.py --model_path <pt_model/onnx_model> --img_show
# Inference with RKNN model
python yolov7.py --model_path <rknn_model> --target <TARGET_PLATFORM> --img_show
Description:
-
<TARGET_PLATFORM>
: Specify NPU platform name. Support Platform refer [here](#2 Current Support Platform). -
<pt_model / onnx_model / rknn_model>
: Specify the model path.
Usage:
# go back to the rknn_model_zoo root directory
cd ../../
export ANDROID_NDK_PATH=<android_ndk_path>
./build-android.sh -t <TARGET_PLATFORM> -a <ARCH> -d yolov7
# such as
./build-android.sh -t rk3588 -a arm64-v8a -d yolov7
Description:
<android_ndk_path>
: Specify Android NDK path.<TARGET_PLATFORM>
: Specify NPU platform name. Support Platform refer [here](#2 Current Support Platform).<ARCH>
: Specify device system architecture. To query device architecture, refer to the following command:# Query architecture. For Android, ['arm64-v8a' or 'armeabi-v7a'] should shown in log. adb shell cat /proc/version
With device connected via USB port, push demo files to devices:
adb root
adb remount
adb push install/<TARGET_PLATFORM>_android_<ARCH>/rknn_yolov7_demo/ /data/
adb shell
cd /data/rknn_yolov7_demo
export LD_LIBRARY_PATH=./lib
./rknn_yolov7_demo model/yolov7.rknn model/bus.jpg
-
After running, the result was saved as
out.png
. To check the result on host PC, pull back result referring to the following command:adb pull /data/rknn_yolov7_demo/out.png
-
Output result refer Expected Results.
Usage:
# go back to the rknn_model_zoo root directory
cd ../../
# if GCC_COMPILER not found while building, please set GCC_COMPILER path
(optional)export GCC_COMPILER=<GCC_COMPILER_PATH>
./build-linux.sh -t <TARGET_PLATFORM> -a <ARCH> -d yolov7
# such as
./build-linux.sh -t rk3588 -a aarch64 -d yolov7
Description:
-
<GCC_COMPILER_PATH>
: Specified as GCC_COMPILER path. -
<TARGET_PLATFORM>
: Specify NPU platform name. Support Platform refer [here](#2 Current Support Platform). -
<ARCH>
: Specify device system architecture. To query device architecture, refer to the following command:# Query architecture. For Linux, ['aarch64' or 'armhf'] should shown in log. adb shell cat /proc/version
- If device connected via USB port, push demo files to devices:
adb push install/<TARGET_PLATFORM>_linux_<ARCH>/rknn_yolov7_demo/ /userdata/
- For other boards, use
scp
or other approaches to push all files underinstall/<TARGET_PLATFORM>_linux_<ARCH>/rknn_yolov7_demo/
touserdata
.
adb shell
cd /userdata/rknn_yolov7_demo
export LD_LIBRARY_PATH=./lib
./rknn_yolov7_demo model/yolov7.rknn model/bus.jpg
-
After running, the result was saved as
out.png
. To check the result on host PC, pull back result referring to the following command:adb pull /userdata/rknn_yolov7_demo/out.png
-
Output result refer Expected Results.
This example will print the labels and corresponding scores of the test image detect results, as follows:
person @ (212 241 285 511) 0.886
bus @ (86 134 540 444) 0.855
person @ (476 237 561 519) 0.835
person @ (112 234 218 531) 0.835
person @ (79 330 124 524) 0.346
- Note: Different platforms, different versions of tools and drivers may have slightly different results.