Hi, How can I save images or file metadata related to a specific inference?
deepstream 6.3
If want to get the raw data from a specific inference, You can follow the steps below.
- You can read the open source code
sources\gst-plugins\gst-nvinfer
by referring to the Gst-Nvinfer source code diagram. - All the data in the reasoning process can be obtained from the source code. Like if you want to dump the output data, you can refer to the
gst_nvinfer_output_generated_file_write
function. If you want to dump any data others, you can implement it by yourself by imitating this.