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.
请问官方提供的post_process_image_object_detect.cpp里的void *PostprocessImageObjDetect::operator()(void *frameData, VecDlTensorPtr &results) 函数里如何得到目标检测模型输出的数据?是从results变量里解析得到吗?该如何解析呢?
请看下面e2e工程师的回复。
I would recommend analyzing the function from the bottom up. Essentially, we are trying to get the following values from the results variable to overlay boxes on top of frameData:
抱歉回复晚了,请看下面e2e工程师的回复。
The logic that we have in our code to get the output is within the getVal function: https://git.ti.com/cgit/edgeai/edge_ai_apps/tree/apps_cpp/common/src/post_process_image_object_detect.cpp#n166
I would recommend using similar, if not the same function to extract the output layer.