-
Hi! I'm currently trying to process a large dataset of images, different sizes and formats. Now, I'm trying to understand what is the reason of some of my images being extremely weird in terms of detections. and this is the outcome: As you can see there are some faces are correctly detected whilst some of them are in weird places. I'm using
My last question is about resizing images before running Thanks for your help, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The reason why you are getting false positive detections is because you need to tweak a little bit on the cascade params, specifically on |
Beta Was this translation helpful? Give feedback.
The reason why you are getting false positive detections is because you need to tweak a little bit on the cascade params, specifically on
MinSize
andMaxSize
. These parameters defines the minimum and maximum detection window. In your case, because you are running the detector over high resolution images, you have to increase them, otherwise you are getting these false positives. Try with-min=400
and-max=2000
. These were giving me correct results.