I’ve figured out the DS 4.0 analogous variable of most of the ones in the github; however, I can’t figure out where batch_th is or what it means. What does this variable mean, and how can I find it in DS 4.0?
Thanks, I have seen that implementation. My question is about that implementation, and the batch_th variable in that implementation specifically (lines 18, 24, 42 in parser_detectnet/nvparsebbox.cpp).
I can figure out how to implement the rest of the parser, but I’m not sure what to do about the batch_th variable. It looks like there isn’t an analogous variable for the new version of deepstream, and I can’t seem to find any documentation saying what the batch_th variable is - batch threshold I’m guessing? Is that the max batch size?
What does the batch_th variable in the above implementation (lines 18, 24, 42 in parser_detectnet/nvparsebbox.cpp) mean, and where can I find a similar variable in the new version of Deepstream? Is it even required in the new version of Deepstream?
I just ignored the batch_th variable to see what would happen, and implemented the rest of the parser.
Now, I am getting many many bounding boxes around the object of interest. Is there a way to combine these boxes, and if so, where would be a good place for me to start looking? Would this take place in the bbox parser itself? Do the multiple boxes have to do with the offsets being improperly calculated due to the batch_th variable?
Thank you so much for your help! I will check out the bbox merge function, and after increasing confidence threshold the parser is working as expected.