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