2025-07-10 2:15 AM
Hi,
I have successfully uploaded a model onto my STM32N6 disco board and the detections seem to be correct. Where would the actual main code be located where for example the input of the model as well as the output of the model and the output to the screen be?
I am using the modelzoo services github repo:
https://github.com/STMicroelectronics/stm32ai-modelzoo-services
Something like:
detections = model(jpeg);
print(detections);
extract_coordinates(detections);
and so on...
thanks
2025-07-10 5:23 AM
Hello @dogg,
The codes deployed by model zoo are in the folder /application_code.
In your case, for object detection and with the DK board, you can find the main.c here:
model_zoo_dev\stm32ai-modelzoo-services\application_code\object_detection\STM32N6\Application\STM32N6570-DK\Src
You can find documentation about the application in the same place:
model_zoo_dev\stm32ai-modelzoo-services\application_code\object_detection\STM32N6\Doc
Additionally, you have documentation about the stedgeai api here:
https://stedgeai-dc.st.com/assets/embedded-docs/index.html
Have a good day,
Julian