$ cd /opt/nvidia/deepstream/deepstream-6.1/samples/configs/tao_pretrained_models/
$ sudo deepstream-app -c deepstream_app_source1_peoplenet.txt
As a next step, I want to output the bunting box coordinates inferred by peoplenet to a text file.
Please tell me how to do it. I searched, but I didn’t understand at all.
nvinfer plugin is opensource, you can output bboxes to a file in attach_metadata_detector of opt\nvidia\deepstream\deepstream\sources\gst-plugins\gst-nvinfer\gstnvinfer_meta_utils.cpp, please rebuild it and replace /opt/nvidia/deepstream/deepstream/lib/gst-plugins/libnvdsgst_infer.so
Does it mean that the attach_metadata_detector function can obtain the coordinates surrounding the person inferred by peoplenet?
Since the coordinates of the bounding box can be obtained with the attach_metadata_detector function, do you mean that you modify the source code so that you can save it in text yourself?