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

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
ahsrab.rifat
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.
