umairjavaid93

Results 6 comments of umairjavaid93

`deepstream_nvdsanalytics_mera.cpp` file ``` #include #include #include #include #include #include #include "gstnvdsmeta.h" #include "nvds_analytics_meta.h" #include "analytics.h" /* custom_parse_nvdsanalytics_meta_data * and extract nvanalytics metadata */ extern "C" void analytics_custom_parse_nvdsanalytics_meta_data(NvDsMetaList *l_user, AnalyticsUserMeta *data)...

`analytics.h` file ``` #ifndef _ANALYTICS_H_ #define _ANALYTICS_H_ #include /* User defined */ typedef struct { guint32 lcc_cnt_exit; guint32 lccum_cnt; guint32 lcc_cnt_entry; guint32 source_id; } AnalyticsUserMeta; #endif ```

Making the make file outputs two programs `deepstream-test5-app` and `deepstream-test5-analytics` . I got the program running by using the `./deepstream-test5-analytics -c configs/test5_config_file_src_infer.txt ` command. running `deepstream-test5-app -c configs/test5_config_file_src_infer.txt `caused that...

I am using deepstream 5.1. I added few print statements in nvmsgconv.cpp file. But I am not seeing those lines printed in the terminal. I think, it's due to nvmsgconv.cpp...

After copying the `libnvds_msgconv.so` file, I am only getting the analytics module object data being sent to the server. Whereas, I want my own custom data to be sent to...