In which directory does Deepstream outputs the confidence metadata with confidence scores?

We are running DS4 on Xavier with our own model.
Upon detection, in which directory does DeepStream outputs the metadata, including the confidence scores of the model used?

Anyone?

Could you help to explain more details about the topic?

We built you own model, upon detection, where does it output the metadata of the objects detected (bounding box and confidence)? We need to push all confidence that is above 90% to a directory so we can output it to our own alerting system.
Thanks

For confidence value you can refer [url]nvinfer is not populating 'confidence' field in NvDsObjectMeta (DS 4.0) - DeepStream SDK - NVIDIA Developer Forums
Regarding the directory of metatdata. you can read the code deepstream_app.c: write_kitti_output()
For example, they need update config file
[application]
gie-kitti-output-dir=streamscl

Please refer to [url]DeepStream SDK FAQ - DeepStream SDK - NVIDIA Developer Forums → Source code diagram → (6)
confidence can get in parseBoundingBox(). You can define your own m_CustomBBoxParserFunc. We have sample in “sources/libs/nvdsinfer_customparser”

1 Like