Deepstream custom tiled display

• Hardware Platform (Jetson / GPU) Jetson Xavier NX
• DeepStream Version 6.0
• JetPack Version (valid for Jetson only) 4.6

Hi,
I want to know if I can show object names while using tiled display.
I know we can check the object names focusing to specific tile by clicking it.
but is it possible to show all the detected object names while in tiled display mode like this picture?

Can you have a try with below command line:

/opt/nvidia/deepstream/deepstream/sources/apps/sample_apps/deepstream-app$ ./deepstream-app -c /opt/nvidia/deepstream/deepstream-6.0/samples/configs/deepstream-app/source2_1080p_dec_infer-resnet_demux_int8.txt

I tried the command line you gave me.
but what i wanted was showing tiled display of RTSP streaming like the capture i attached previously.

Can you refer below code in deepstream_app_main.c in sample_apps\deepstream-nvdsanalytics-test?

    if (appCtx->person_class_id > -1
        && obj->class_id == appCtx->person_class_id) {
      if (strstr (obj->text_params.display_text, "Man")) {
        str_replace (obj->text_params.display_text, "Man", "");
        str_replace (obj->text_params.display_text, "Person", "Man");
        num_male++;
      } else if (strstr (obj->text_params.display_text, "Woman")) {
        str_replace (obj->text_params.display_text, "Woman", "");
        str_replace (obj->text_params.display_text, "Person", "Woman");
        num_female++;
      }

That was not the code i was looking for.
but i found what i wanted at the same source file ‘deepstream_app_main.c’
I wanted to change “show_bbox_text” to TRUE to see the detected object names during tiled display.

thanks for help!

Great. So it fixed your issue. right?

yep it works :)

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