Search found 8 matches

by olivier
2026-02-05 15:13
Forum: Luckfox Pico-RV1103/RV1106
Topic: Why does luckfox_pico_rtsp_yolov5 use OpenCV (CPU) instead of full HW? Any official full-HW demo ?
Replies: 1
Views: 2408

Why does luckfox_pico_rtsp_yolov5 use OpenCV (CPU) instead of full HW? Any official full-HW demo ?

Hi,
I inspected the luckfox_pico_rtsp_yolov5 demo and it clearly uses OpenCV on CPU inside the main loop:
VI provides NV12 (YUV420sp) frame (RK_MPI_VI_GetChnFrame)
then it does CPU cv::cvtColor(NV12→BGR)
then CPU resize + letterbox + memcpy() into RKNN input (RGB)
then CPU overlay (rectangle ...
by olivier
2025-12-18 12:01
Forum: Luckfox Pico-RV1103/RV1106
Topic: [RV1106] How to install a RKNN v6-compatible runtime on the official Luckfox Buildroot (SD image)
Replies: 10
Views: 44153

Re: [RV1106] How to install a RKNN v6-compatible runtime on the official Luckfox Buildroot (SD image)

Hi Salieri,
I confirmed that visiong works perfectly (YOLOv11n, camera, NPU, Vigide handshake OK).
The only blocking issue is that DisplayUDP destination IP is hardcoded to 172.32.0.100 in visiong.so.
Even when setting:
DISPLAY_UDP_IP=xxx.xxx.xxx.xxx
DISPLAY_UDP_PORT=xxxx
the runtime still prints ...
by olivier
2025-11-12 11:11
Forum: Luckfox Pico-RV1103/RV1106
Topic: [RV1106] How to install a RKNN v6-compatible runtime on the official Luckfox Buildroot (SD image)
Replies: 10
Views: 44153

Re: [RV1106] How to install a RKNN v6-compatible runtime on the official Luckfox Buildroot (SD image)

Thanks a lot for your share !!

I don't need the libra.so to get all working ?

Thank so much for your help and your python lib !
by olivier
2025-11-11 16:10
Forum: Luckfox Pico-RV1103/RV1106
Topic: [RV1106] How to install a RKNN v6-compatible runtime on the official Luckfox Buildroot (SD image)
Replies: 10
Views: 44153

Re: [RV1106] How to install a RKNN v6-compatible runtime on the official Luckfox Buildroot (SD image)

Hi Salieri,
I tried to download your VisionG_SE attachments from OSHWHub but OSHWHub doesn’t accept non-Chinese phone numbers to subscribe.
Would it be possible for you to share the files (especially librknnmrt.so, test_rknn.py, and the YOLOv11 model) via GitHub or Google Drive?
I’d really like to ...
by olivier
2025-11-03 21:13
Forum: Luckfox Pico-RV1103/RV1106
Topic: [RV1106] How to install a RKNN v6-compatible runtime on the official Luckfox Buildroot (SD image)
Replies: 10
Views: 44153

Re: [RV1106] How to install a RKNN v6-compatible runtime on the official Luckfox Buildroot (SD image)

Wow, that’s impressive — you even designed your own RV1106-based board! 🔥

You’re clearly on another level 👏

I’m really curious about your setup, because I’ve been stuck for days with this issue.
You mentioned that you successfully ported YOLO11 on your board using the Luckfox Pico Pro Max firmware ...
by olivier
2025-11-03 19:43
Forum: Luckfox Pico-RV1103/RV1106
Topic: [RV1106] How to install a RKNN v6-compatible runtime on the official Luckfox Buildroot (SD image)
Replies: 10
Views: 44153

Still getting ‘E RKNN: incompatible model version: 6’ — tested with every Toolkit (1.6 → 2.3.2), nothing works

Still getting ‘E RKNN: incompatible model version: 6’ — tested with every Toolkit (1.6 → 2.3.2), nothing works!”
Hi everyone,
I’m posting this after days of testing and debugging, trying to convert ONNX models to RKNN for the RV1106 / Luckfox Pico platform — and honestly, I’m out of ideas at this ...
by olivier
2025-11-02 13:12
Forum: Luckfox Pico-RV1103/RV1106
Topic: [RV1106] How to install a RKNN v6-compatible runtime on the official Luckfox Buildroot (SD image)
Replies: 10
Views: 44153

[RV1106] How to install a RKNN v6-compatible runtime on the official Luckfox Buildroot (SD image)

Hi everyone,
I’m currently working on several AI models (YOLOv8 / ReXNet / MobileNet) that I convert using rknn-toolkit2 v2.2 and v2.3, which generate RKNN v6 models.
However, on my Luckfox Pico Max (RV1106) running the official Buildroot SD image (SDK 1.3), the default runtime only supports RKNN v5 ...
by olivier
2025-11-02 12:17
Forum: Luckfox Pico-RV1103/RV1106
Topic: Missing documentation for real-time NPU inference + video streaming with overlay (YOLO use case)
Replies: 1
Views: 1990

Missing documentation for real-time NPU inference + video streaming with overlay (YOLO use case)

Hello Rockchip / Luckfox team,
I have a RV1106-based Luckfox Pico board, and I’ve been following your official documentation
(Rockchip RV1106/RV1103 Developer Guide - Linux IPC Sample).
However, there is currently no example or documentation explaining the most basic use case for this platform:
Run ...