Search found 7 matches

by grayfacenospace
2024-01-27 23:20
Forum: Luckfox Pico-RV1103/RV1106
Topic: does luckfox rv1106 support tensorflow lite?
Replies: 4
Views: 2810

Re: does luckfox rv1106 support tensorflow lite?

CPP examples are here https://github.com/rockchip-linux/rknpu2/tree/master/examples/RV1106_RV1103 Tensorflow Lite should be supported using the RKNN Toolkit2 https://github.com/rockchip-linux/rknn-toolkit2 According to the latest repo only mobilenet and yolov5 are compatible right now. Those are alr...
by grayfacenospace
2024-01-23 18:31
Forum: Luckfox Pico-RV1103/RV1106
Topic: does luckfox rv1106 support tensorflow lite?
Replies: 4
Views: 2810

Re: does luckfox rv1106 support tensorflow lite?

It seems like currently only Mobilenetv2 and YoloV5 well supported on this board, which aren't bad models.

For faster inference mobilenet, for more accurate inference Yolov5.
by grayfacenospace
2024-01-22 17:58
Forum: Luckfox Pico-RV1103/RV1106
Topic: Network login
Replies: 14
Views: 10249

Re: Network login

My Pico Max was actually using DHCP on the Ethernet connection by default, not the static IP as described in the manual. Had to check my router connections to find its IP.
by grayfacenospace
2024-01-22 12:50
Forum: Luckfox Pico-RV1103/RV1106
Topic: How to use the CSI camera and YoloV5 in Python
Replies: 8
Views: 4498

Re: How to use the CSI camera and YoloV5 in Python

Thank you for the fast response. I am assuming that this is the code for inference https://github.com/rockchip-linux/rknpu2/blob/master/examples/RV1106_RV1103/rknn_yolov5_demo/src/main.cc And this seems to be the code for grabbing a frame from the camera(?) https://github.com/LuckfoxTECH/luckfox-pic...
by grayfacenospace
2024-01-22 9:19
Forum: Luckfox Pico-RV1103/RV1106
Topic: How to use the CSI camera and YoloV5 in Python
Replies: 8
Views: 4498

Re: How to use the CSI camera and YoloV5 in Python

That is a shame to hear, I thought since the board had Python support that it would be able to do camera capture and inference in Python. This is a major use-case for many people, and the reason that I bought the board. Are there any example C++ programs for capturing the camera image and running in...
by grayfacenospace
2024-01-22 8:13
Forum: Luckfox Pico-RV1103/RV1106
Topic: How to use the CSI camera and YoloV5 in Python
Replies: 8
Views: 4498

Re: How to use the CSI camera and YoloV5 in Python

Currently I have flashed the buildroot image on the Pico Max. After that I was able to look up its IP address on my router and then able to use VLC (only on Windows) to stream the RTSP demo stream with detection. I have also managed to compile the yolov5 demo and run it on a static image on the Pico...
by grayfacenospace
2024-01-21 18:36
Forum: Luckfox Pico-RV1103/RV1106
Topic: How to use the CSI camera and YoloV5 in Python
Replies: 8
Views: 4498

How to use the CSI camera and YoloV5 in Python

Hello,

I have managed to run the Yolov5 demo but I am not quite sure how to use the CSI camera

1) How can I take pictures with the CSI camera and use them inside Python?
2) How can I use a Yolov5 model to run inference on the pictures inside Python?

Thanks in advance!