I’d like to create a detection and classification model similar to the deepstream-app1 example but I don’t understand what the output form of this model is. This will allow me to avoid using a Triton server to carry out custom parsing in C.
Could you tell me the output format of the model used (an example would be really helpful)?
What do you mean?
Which model do you talking about? Do you know about the model itself?
Do you want to know what the model output looks like in DeepStream?
Yes because I tried to implement my model which have the next dimensions:
Output ‘boxes’ shape: [1, 8400, 4]
Output ‘scores’ shape: [1, 8400, 1]
Output ‘classes’ shape: [1, 8400, 1]
Where 8400 is the maximum number of elements in the model’s prediction.
I developped the custom parser in C for the bounding box but I have the next warning:
WARNING: Num classes mismatch. Configured:1, detected by network: 8400
When I’m running my code, I have nothing from the osd_sink_pad_buffer_probe function. The content of the osd_sink_pad_buffer_probe function is the same as osd_sink_pad_buffer_probe function from deepstream app test1.
My problem is that there is bbox found from the custom parser but there are not draw on the screen. I didn’t put threshold value in the pgie config file: detector_classifier_nemesis_pgie_config.txt (624 Bytes)