Please provide complete information as applicable to your setup.
• Hardware Platform (Jetson / GPU) RTX3050
• DeepStream Version 6.4
• JetPack Version (valid for Jetson only)
• TensorRT Version
• NVIDIA GPU Driver Version (valid for GPU only)
• Issue Type( questions, new requirements, 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)
• Requirement details( This is for new requirement. Including the module name-for which plugin or for which sample application, the function description)
Hi, I am running my deepstream LPR application on python. However, i noticed that my LPD has no parent object from my primary detector.
Pipeline : PGIE → tracker → SGIE1 → SGIE2 → Nvvidconv → Filter → Tiler
Code to get parent object
while l_obj is not None:
try:
# Casting l_obj.data to pyds.NvDsObjectMeta
obj_meta = pyds.NvDsObjectMeta.cast(l_obj.data)
except StopIteration:
break
if obj_meta.unique_component_id == 1:
print("Obj ID: " + str(obj_meta.object_id))
elif obj_meta.unique_component_id == 2:
# print("LPD parent: ")
try:
print(obj_meta.parent)
except StopIteration:
print("Error")
May i know what are the key points for me to get the parent object? Currently, the parent object i got is None. Do i need to edit my pipeline or change any parameters in my config files