linuxOS_AP05/debian/test/rockchip-test/npu2/rknn_demo.sh
2025-09-26 09:40:02 +08:00

14 lines
482 B
Bash
Executable File

#!/bin/bash
#/rockchip-test/npu2/aarch64/rknn_common_test /rockchip-test/npu2/model/RK3588/vgg16_max_pool_fp16.rknn /rockchip-test/npu2/model/dog_224x224.jpg 10
COMPATIBLE=$(cat /proc/device-tree/compatible)
if [[ $COMPATIBLE =~ "rk3588" ]]; then
###mipi camera is /dev/video11, can change for tests
rknn_camera -d /dev/video11 -m /rockchip-test/npu2/model/RK3588/vgg16_max_pool_fp16.rknn
else
rknn_camera -d /dev/video1 -m /rockchip-test/npu2/model/RK356X/mobilenet_v1.rknn
fi