cancel
Showing results for 
Search instead for 
Did you mean: 

camera module for dataset collection

Chris44
Associate

Hi,

I'm currently trying to run an image classification AI on a STM32H747I-DISCO board with the B-CAMS-OMV camera module bundle, using my own dataset. I was told it's good practice to use the same sensor for dataset collection and the final application, so I want to collect the images for the dataset with the B-CAM-OMV camera module aswell.

I've seen that the model zoo provides many applications for the DISCO, unfortunately no simple USB-Webcam. I found such an application in the deprecated FP-AI-VISION1 pack, but it seems that my DISCO is a newer model and has another LCD (MB1166-A09), which doesn't work with the FP-AI-VISION1 pack.

Does anyone know of a similar up-to-date application for simple taking images or has a different solution?

1 ACCEPTED SOLUTION

Accepted Solutions
Gyessine
ST Employee

Hello @Chris44 
you can try this example.
or adapt your display using your current example, identify the driver used by your LCD screen.
Open the stm32h747i_discovery_conf.h file and enable the corresponding driver.

#define USE_LCD_CTRL_OTM8009A               0U
#define USE_LCD_CTRL_NT35510                1U
#define USE_LCD_CTRL_ADV7533                0U

 BR
Gyessine

To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.

View solution in original post

1 REPLY 1
Gyessine
ST Employee

Hello @Chris44 
you can try this example.
or adapt your display using your current example, identify the driver used by your LCD screen.
Open the stm32h747i_discovery_conf.h file and enable the corresponding driver.

#define USE_LCD_CTRL_OTM8009A               0U
#define USE_LCD_CTRL_NT35510                1U
#define USE_LCD_CTRL_ADV7533                0U

 BR
Gyessine

To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.