Hmm, actually the pipeline works sometimes. I did tens of trials and figured out that I got this error when I used 4+ streams and the number of detections was high.
My pipeline is mainly; PGIE (detector) → Tracker (I fetch the embedings) → SGIE(Age_gender).
do you mean the app works fine if stream number is less than or equal to 4?
what is the whole media pipeline? are you using rtsp source or local file? can it be reproduced every time?
could you provide a simplified code project to reproduce this issue? Thanks! You can use forum private email(click forum avatar-> personal messages->new message).
1- I am not sure but I mean that the app works fine sometimes and sometimes I get this assertion. So, I said that’s maybe because of the number of streams or the detections.
2- For now I am testing on local files, but It is expected to be rtsp one day.
3- I’ll send the code and configs in a private mail.
I think I know why I am getting this assertion. My tracker has maxTargetsPerStream parameter which was set to 100. Adn I am getting more than 200 object detection to be tracked. When I made changed it to 256, it works fine.
Thanks!!