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.

Compiler/TDA4VM: In YUV format, if the number of cameras is set to 4, why no screen come out?

Part Number: TDA4VM

Tool/software: TI C/C++ Compiler

Hello Expert,

I use YUV format camera.

 

If I input 4 cameras in Multicam, no screen comes out.

However, if i input 1 camera, the data from four cameras are stored in one buffer and screen come out.

 

captureObj->image_arr[q] = vxCreateObjectArray(context, (vx_reference)yuv_image, sensorObj->num_cameras_enabled); 

I tried changing the code as below.

captureObj->image_arr[q] = vxCreateObjectArray(context, (vx_reference)yuv_image, 4);

But The same is true even if the index is fixed to 4 in the code.

 

 

What is the reason?
I want to have each buffer for each camera.

I would appreciate if you can tell me how.

Thanks.

 

 

Regards,

Kim