Custom deepstream and get output

Please provide complete information as applicable to your setup.

• Hardware Platform (Jetson / GPU) : → Jetson
• DeepStream Version → DeepStream 6.3
• JetPack Version (valid for Jetson only) : -->Jetpack 5.1.2
• TensorRT Version : -->followJetpack
• NVIDIA GPU Driver Version (valid for GPU only)
• Issue Type( questions, new requirements, bugs) : → Question, new requiremnet
• 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)

Problem :
My code is below.
I need to get the landmark value out. I see it is in the same object as top, left, right, bottom. And these four values I take in the probe function are
obj_meta = pyds.NvDsObjectMeta.cast(list_obj_meta.data)
rect_params = obj_meta.rect_params
x = rect_params.left
y = rect_params.top
w = rect_params.width
h = rect_params.height

Because I’m seeing it saved in the object, but when I get the lardmark by:
landmark = rect_params.landmark
Then it says there are no landmarks in rect_params.

In addition, I tried to get obj_meta.landmark but it also said it was not there, please help me

face_detetc.txt (8.6 KB)
My code in nvinfer.cpp

How to get landmard value?

  1. Can you get landmarks from native post-processing?

2.If the answer to the above question is yes, do you want to get the corresponding landmark in Python?
If you want get landmark in python, corresponding python bindings need to be added.

This is a sample for facial landmark.

This is another sample for add meta python bindings.

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