Though this is not a machine learning platform But I feel more comfortable in StackOverflow as a software engineer. My question is how to increase bounding box accuracy in the object detection problem after applying ML, for example, YOLO, Faster RCNN etc. I got one level of accuracy(mAP) after applying YOLOV3. But I need more accuracy( 95%+). Most of the object shapes in my case are rectangle/square. can anyone give me any clue about image processing or anything else?
0
votes
without explaining your own dataset and problem, its hard to give accurate advice. If they are mostly rectangle/square, you can use approxPolyDP in opencv. example. If you manage to find 95%+ of your objects that way, you can then train a nn to validate if the shape you think is a rectangle/square is indeed your object of interest.
- juvian