0

Is it ok to put multiple annotations of the same class on the same object? Is it going to break or not affect or increase accuracy?

OneBirdMultipleAnnotations

Iv put multiple bounding boxes of the same class on an object

user29330
  • 1
  • 1

1 Answers1

0

This probably won’t do anything because overlapping boxes are filtered out with Intersection Over Union. You can read more about how the metrics are calculated here.

If you’re using a modern YOLO like v5 or v7 you might want to try labeling with polygons, though. It does what it looks like you’re trying to do (give the model more information about where the object of interest is compared to the background) and is easy to do with the Smart Polygon model if you’re already using Roboflow.

Brad Dwyer
  • 6,305
  • 8
  • 48
  • 68