• Hardware Platform (Jetson )
• DeepStream Version 5.0
• JetPack Version (4.5)
• TensorRT Version 7.1.3
• Issue Type( questions)
I am wondering if there is a method to save the entire tiled output from deepstream to a numpy array / opencv mat.
I know in the multistream example we “pyds.get_nvds_buf_surface”
n_frame = pyds.get_nvds_buf_surface(hash(gst_buffer), frame_meta.batch_id)
# convert python array into numy array format.
frame_image = np.array(n_frame, copy=True, order='C')
# covert the array into cv2 default color format
frame_image = cv2.cvtColor(frame_image, cv2.COLOR_RGBA2BGRA)
Is there maybe another function like this for furtherdown the pipeline?
regards Andrew