How to remove the annotations ( Label name and ID ) appearing above box in deepstream

**• Hardware Platform (Jetson / GPU)**jetson
• DeepStream Version 6.1

I want to remove the label name and id printed on top of the box in the deep stream-generated video. How can I do modifications to that? I am using python for DS. I just want to keep the box.

You may set option “display-text” from nvdsosd to 0 to disable the label display, description can be found Gst-nvdsosd — DeepStream 6.2 Release documentation.
Or example setting by code here: deepstream-6.1/sources/apps/sample_apps/deepstream-test3/deepstream_test3_app.c

@yingliu thanks this is helpful, But now all of my text like FPS information from the video is gone. I just want to remove the label and id part

You can customized it by referring the deepstream_test3_app.c: tiler_src_pad_buffer_probe.
Get the displaymeta and set the alpha para to 0.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.