Part Number: TDA4VM
i would like to know ,how to get the GPU utilization,
such as the
Vision Apps User Guide: Auto Valet Parking Application 4
thanks
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.
Part Number: TDA4VM
i would like to know ,how to get the GPU utilization,
such as the
Vision Apps User Guide: Auto Valet Parking Application 4
thanks
Hi,
You could refer the app_init() function in AVP4 demo, where the below is done...
appGrpxInitParamsInit(&grpx_prms, context);
grpx_prms.draw_callback = xxx ; // provide your callback function here (if not provided, it would take the default function)
appGrpxInit(&grpx_prms);
Adding the above 3 lines in your application shall provide you the GPU utilization.
Regards,
Nikhil