Please provide complete information as applicable to your setup.
• Hardware Platform (Jetson / GPU)
Jetson Xavier NX
• DeepStream Version
5.0
• JetPack Version (valid for Jetson only)
4.4
• TensorRT Version
• NVIDIA GPU Driver Version (valid for GPU only)
• Issue Type( questions, new requirements, bugs)
bugs
• How to reproduce the issue ? (This is for bugs. Including which sample app is using, the configuration files content, the command line used and other details for reproducing)
Explained in detail below
• Requirement details( This is for new requirement. Including the module name-for which plugin or for which sample application, the function description)
I am trying to combine the two example notebooks : image_metadata and nvdsanalytics.
I started with the nvdsanalytics script; I added the piece of code following after the pgie element and before the tracker element:
nvvidconv_postinfer = Gst.ElementFactory.make("nvvideoconvert", "convertor_postinfer-%u"%i)
if not nvvidconv_postinfer:
sys.stderr.write(" Unable to create nvvidconv_postinfer \n")
pipeline.add(nvvidconv_postinfer)
pgie.link(nvvidconv_postinfer)
caps_postinfer = Gst.ElementFactory.make("capsfilter", "post_infer_filter-%u"%i)
caps_postinfer.set_property("caps", Gst.Caps.from_string("video/x-raw(memory:NVMM),format=RGBA"))
pipeline.add(caps_postinfer)
nvvidconv_postinfer.link(caps_postinfer)
caps_postinfer.link(tracker)
Just adding the above snippet cause the pipeline to build successfully but fails during playing with : Segmentation Fault(core dumped)