| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| model/ | H | 05-Jun-2025 | - | |||
| src/ | H | 05-Jun-2025 | - | 964 | 748 | |
| CMakeLists.txt | H A D | 05-Jun-2025 | 1 KiB | 43 | 28 | |
| README.md | H A D | 05-Jun-2025 | 531 | 34 | 22 | |
| build-linux_RV1106.sh | H A D | 05-Jun-2025 | 632 | 30 | 20 |
README.md
1下述<TARGET_PLATFORM>是RV1106或RV1103 2 3# arm Linux Demo 4 5## build 6 7modify `GCC_COMPILER` on `build-linux_<TARGET_PLATFORM>.sh` for target platform, 8 9then execute 10 11``` 12./build-linux_<TARGET_PLATFORM>.sh 13``` 14 15## install 16 17connect device and push build output into `/userdata` 18 19``` 20adb push install/rknn_mobilenet_demo_Linux /userdata/ 21``` 22 23## run 24 25``` 26adb shell 27cd /userdata/rknn_mobilenet_demo_Linux/ 28``` 29 30``` 31export LD_LIBRARY_PATH=./lib 32./rknn_mobilenet_demo model/<TARGET_PLATFORM>/mobilenet_v1.rknn model/dog_224x224.jpg 33``` 34