The video display functions correctly, showing bounding boxes for all models, including classifiers and detectors.
However, I am facing an issue with sending the complete metadata (age, gender, etc.) to Redis. Based on my setup, I believe the model configurations are correct, as the video display works .
Could you please advise if there are additional configurations or plugins required to ensure that all metadata is sent to Redis? Any guidance or recommendations you could provide would be greatly appreciated.
Thank you for your time and support.
Example of the actual data sent to Redis
{
“messageid”: “4174825f-eaf1-4f78-9904-e36498836746”,
“mdsversion”: “1.0”,
“@timestamp”: “2024-12-06T07:46:47.769Z”,
“place”: null,
“sensor”: null,
“analyticsModule”: null,
“object”: {
“id”: “18446744073709551615”,
“speed”: 0,
“direction”: 0,
“orientation”: 0,
“person”: {},
“bbox”: {
“topleftx”: 236,
“toplefty”: 41,
“bottomrightx”: 293,
“bottomrighty”: 265
},
“location”: {
“lat”: 0,
“lon”: 0,
“alt”: 0
},
“coordinate”: {
“x”: 0,
“y”: 0,
“z”: 0
},
“pose”: {}
},
“event”: {
“id”: “4151ccaf-0404-4f66-b33e-57bb5aa97977”,
“type”: “moving”
},
“videoPath”: “”
}
Here is the desired format of the metadata to send to Redis. Please suggest the necessary plugins and the integration position in my graph.
”id”: 1
“person”: {
“gender“:femme,
“age“:20},
“bbox”: {
“topleftx”: 236,
“toplefty”: 41,
“bottomrightx”: 293,
“bottomrighty”: 265
}