Deploying tensorflowlite object detection model
Hi, I am using STM32F746G Discovery Board to deploy an object detection model to detect person in an image. The model size of the object detection model is less than 1Mb. The implementation would be like to make an inference in the microcontroller like access the jpg images in the sd card (since i dont have a camera module) and display it in the LCD together with its prediction like bounding boxes on the image in case there is a person in it.
I used the STM32Cube MX and enabled XCUBE AI then upload the pre trained model which is the ssd mobile net v2 but I am having trouble making the configuration for displaying image, accessing files in sd card, decoding the jpg images from the sd card in STM32Cube MX land I also don't know how to use the XCUBE AI application template like the methods ai_run(), acquire_and_process_data(ai_i8* data[]) and others.

