Please provide complete information as applicable to your setup.
• Hardware Platform (Jetson / GPU)
• DeepStream Version 6.3
• 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)
There is an issue with nvdsanalytics when it parses the yml files. The line and the other features are not drawn correctly on the output. I believe the issue is related with attaching the config-width:
and config-height:
from the yml file. It is only occur with the yml files not txt files. So I have checked the nvdsanalytics_property_yaml_parser.cpp
in the gst-nvdsanalytics plugin, which has a function nvdsanalytics_parse_yaml_config_file
will be called when the yml file is applied. I compare it with the nvdsanalytics_property_parser.cpp
which is for parsing the txt files and it has a function called nvdsanalytics_parse_config_file
. At the end of nvdsanalytics_parse_config_file
there is a for loop to attach the width and height of the nvdsanayltics which is not existed in nvdsanalytics_parse_yaml_config_file
after I added it in the yml parser function it works
for (auto & info:nvdsanalytics->stream_analytics_info[0]) {
info.second.config_width = nvdsanalytics->configuration_width;
info.second.config_height = nvdsanalytics->configuration_height;
}