Python app triton inference Deepstream 5.1

Hi @h9945394143
About error, especailly error - “ERROR: infer_postprocess.cpp:1044 Failed to parse bboxes”, indicates your can’t use the default post-processor, that is, you need to implement your own post-processor for your model output.

with below config (replacing NvDsInferParseCustomTfSSD with your own post-processor function),
The source code of "NvDsInferParseCustomTfSSD " is under /opt/nvidia/deepstream/deepstream-6.0/samples/configs/deepstream-app-triton/ .

And, note, if you enable NMS, it does post-processor firstly, and then do NMS.

custom_parse_bbox_func: “NvDsInferParseCustomTfSSD”
...
custom_lib {
    path: “/opt/nvidia/deepstream/deepstream-6.0/lib/libnvds_infercustomparser.so”
}