This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TDA4VM: Use ISP of TDA4

Part Number: TDA4VM


Hi

I currently have the ov10652 camera lit with raw format output. Trying to use the built-in isp function for image correction. I have a problem.
I am using our own development board for this, not the TI DEMO board.
The driver for ov10652 is modeled after the AR0233 program, and the ISP related configuration as well as the bin and xml files are all using the AR0233.
The output program is a modified version of the app_multi_cam routine, which does not use the display module, but stores the raw output image directly in the app_multi_cam program.

Instead of using the display module, the app_multi_cam program stores the image directly in raw format. Now, the image is successfully stored when the following configuration is used.
obj->enable_viss = 0;
obj->enable_aewb = 0; obj->enable_mess = 0; obj->enable_mess = 0
obj->enable_mosaic = 1; obj->enable_viss = 0; obj->enable_aewb = 0


With the following configuration, the image cannot be stored
obj->enable_viss = 1; obj->enable_aewb = 1; obj->enable_mosaic = 1
obj->enable_aewb = 1; obj->enable_mosaic = 1; obj->enable_mosaic = 1
obj->enable_mosaic = 1; obj->enable_viss = 1; obj->enable_aewb = 1

If you want, I can send you the part of the code that I changed.
Please tell me what I can do now to solve the problem I've encountered.