Please provide complete information as applicable to your setup.
• Hardware Platform (Jetson / GPU): NVIDIA GeForce RTX 2080 Ti • DeepStream Version: 6.4 • JetPack Version (valid for Jetson only) • TensorRT Version: 8.6.1.6 • NVIDIA GPU Driver Version (valid for GPU only): 535.183.01 • Issue Type( questions, new requirements, bugs): questions • 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)
I tried to play deepstream-app with source4_1080p_dec_infer-resnet_tracker_sgie_tiled_display_int8.txt, I disable sink0 and sink2, and enable sink1, but in the out.mp4 that does not show tracking id (car_i, person_k, …).
Here is the tracker group
[tracker]
enable=1
# For NvDCF and NvDeepSORT tracker, tracker-width and tracker-height must be a multiple of 32, respectively
tracker-width=960
tracker-height=544
ll-lib-file=/opt/nvidia/deepstream/deepstream/lib/libnvds_nvmultiobjecttracker.so
# ll-config-file required to set different tracker types
# ll-config-file=config_tracker_IOU.yml
# ll-config-file=config_tracker_NvSORT.yml
ll-config-file=config_tracker_NvDCF_perf.yml
# ll-config-file=config_tracker_NvDCF_accuracy.yml
# ll-config-file=config_tracker_NvDeepSORT.yml
gpu-id=0
display-tracking-id=1
$ cd /opt/nvidia/deepstream/deepstream-6.4/samples/configs/deepstream-app
$ ../../../bin/deepstream-app -c source4_1080p_dec_infer-resnet_tracker_sgie_tiled_display_int8.txt
process_meta (AppCtx * appCtx, NvDsBatchMeta * batch_meta)
{
// For single source always display text either with demuxer or with tiler
if (!appCtx->config.tiled_display_config.enable ||
appCtx->config.num_source_sub_bins == 1) {
appCtx->show_bbox_text = 1;
}
If I let this appCtx->show_bbox_text = 1 always true, so everything will be ok.