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.
Hi,
I am trying to run the caffe jacinto object detection usecase from github on TDA2X, using TIDL_OD usecase in Vision_SDK_03_03_00_00.
I have generated the NET.BIN and PRM.BIN using the import tool in TIDL.
Created inHeader_OD and inData_OD for resolution 512x512(verified by running another model which takes same input resolution) and copied these four files to SD card.
In the chains_tidlOD.c I have modified some parameters as follows.
#define TIDL_OD_INPUT_WIDTH (512)
#define TIDL_OD_INPUT_HEIGHT (512)
#define DEC_OUT_WIDTH (512)
#define DEC_OUT_HEIGHT (512)
For display resolution, I am maintaining the same as for default model 768x320(scaled by 2 for display).
#define TIDL_OD_DISPLAY_WIDTH (1536)
#define TIDL_OD_DISPLAY_HEIGHT (640)
#define TIDL_OD_FPS_OPPNOM (1)
#define SYNC_THRESHOLD (12000)
When I run the usecase I am getting no errors. The video stream is black. I have faced similar issue before as in https://e2e.ti.com/support/arm/automotive_processors/f/1021/t/688490
By reducing the FPS, I was able to get it working. Now I have reduced the FPS to minimum, and tried initial model as well as sparse model. During import, total GMACS is shown as 3.36 GMACS. Is it because of the high GMACS the model is not able to run?
Thanks in advance,
Navinprashath.R.R