UNIHIKER K10 full arduino support of camera+tft HOW TO?

userHead to.dae 2025-09-04 17:41:22 31 Views1 Replies

i would like to do calculations with the camera image to get a movement detection with (x, y) coordinates of the moving area and simultaneously showing the camera live stream on the tft. how can i access the camera image despite the k10.setBgCamerImage(true);  which seems quite limited.

2025-09-05 23:23:13

Use the camera API’s readFrame() or getFrameBuffer() function (naming depends on your library/board).

This gives you raw RGB/YUV/Grayscale data in a buffer.

You can then:

Run a motion detection algorithm (frame differencing, bounding box, centroid, etc.).

Push the same frame to the TFT using tft.drawRGBBitmap(...), pushImage(...), etc.

 

userHeadPic ahsrab.rifat