I need to detect object (coin) in a photo, which is to draw a rectangle around it. I tried Mark-RCNN, Retina, Yolo, SSD - same result. The rectangles are not perfect. If you look at examples available online, you will see exactly what I mean: look at the image In a picture this article provides you can see that the proposed rectangle "cuts" the object, leaving part of it outside, while in some other places leaves too much space between the object and the rectangle.
My question is: how can I get an EXACT rectangle, providing my training data are accurate? Any fine-tuning tricks, different approaches, links - anything will be appreciated. Thank you.
One possible way of doing this (goes without saying, but this is just one approach, no idea if this will suffice for your particular problem)
Essentially turn to classical techniques as a post-processing step after your NN step.
This method can likely fail if you have overlapping coins and coins cluttered way to close in the same image. But with the help of Hough circle detection, it should be robust to some amount of cluttering. You can also do some filtration on the circles after the last step.