There is no update from you for a period, assuming this is not an issue anymore. Hence we are closing this topic. If need further support, please open a new one. Thanks
There is currently no feasible solution. You can try to achieve it yourself. Add the following code for logical control. If you don’t require pgie, you can use the gst_nvinfer_process_objects API. Because there is no object in your image, it will not be processed by default.
if (nvinfer->input_tensor_from_meta) {
flow_ret = gst_nvinfer_process_tensor_input (nvinfer, inbuf, in_surf);
} else if (nvinfer->process_full_frame) {
flow_ret = gst_nvinfer_process_full_frame (nvinfer, inbuf, in_surf);
} else {
flow_ret = gst_nvinfer_process_objects (nvinfer, inbuf, in_surf);
}