Replies: 3 comments 2 replies
-
You're looking at it the wrong way. Don't change darknet to behave this way. Instead, change your own application to ignore what you want. So darknet gives out all these results, and your application would ignore the ones that are too small. As for confidence level, this is a typical setting. See "threshold". |
Beta Was this translation helpful? Give feedback.
-
No, you use threshold during inference, not training. For training, I recommend using the script generated by DarkMark, or doing it as shown in this FAQ: https://www.ccoderun.ca/programming/darknet_faq/#training_command When it comes to ignoring certain predictions...your application is free to do whatever it wants with the results. If a bbox is near the edge of the image, and the area (width x height) is < some magic value you determine works for you, then ignore it. |
Beta Was this translation helpful? Give feedback.
-
Hi,
I am trying to detect parking spots and I want to ignore detections with bounding boxes that are too small (lets say I only want detections with width and height above 25 pixels) and detections with low confidence (lets say I only want detections with confidence higher than 0.5).
Is it possible to make these changes with hope to get better map results? if so, where I need to make the changes?
Beta Was this translation helpful? Give feedback.
All reactions