Please provide complete information as applicable to your setup.
• Hardware Platform (Jetson / GPU): GPU
• DeepStream Version5.1-21.02-devel
• JetPack Version (valid for Jetson only)
• TensorRT Version
• NVIDIA GPU Driver Version (valid for GPU only): 470.103.01
• Issue Type( questions, new requirements, bugs): Questions
• How to reproduce the issue? (This is for bugs. Including which sample app is used, 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):
I’m using the combination of test5-app
and the NVDS analytics app for extracting the metadata. I have successfully combined and generated the JSON structure with the values.
“analyticsModule” : {
“cam-source-id” : 0,
“description” : “Vehicle Detection and License Plate Recognition”,
“occupancy” : 1.0,
“Entry” : 2.0,
“Exit” : 0.0,
“source” : “OpenALR”,
“version” : “1.0”
},
“object” : {
“track-id” : “238”,
“speed” : 0.0,
“direction” : 0.0,
“orientation” : 0.0,
“person” : {
“age” : 0,
“gender” : “”,
“hair” : “”,
“cap” : “”,
“apparel” : “”,
“confidence” : 1.0
},
“bbox” : {
“topleftx” : 621,
“toplefty” : 399,
“bottomrightx” : 728,
“bottomrighty” : 511
},
“location” : {
“lat” : 0.0,
“lon” : 0.0,
“alt” : 0.0
},
“coordinate” : {
“x” : 0.0,
“y” : 0.0,
“z” : 0.0
}
},
“event” : {
“id” : “9f30f662-c841-4fda-9c08-ee2465961b3a”,
“type” : “entry”
},
“videoPath” : “”
}
The app works but does not send proper speed value. Only sending default “0”.
Where should I update so that I can get the proper speed value?