Intersection over Union

This is one method of determining if the YOLO algorithm (or any other bounding box generating algorithm) is doing well.

Consider the image below. The red box is the actual bounding box and the blue one is the bounding box generated by an algorithm.

We calculate the IoU (Intersection over Union) as sizeofintersectionsizeofunion\frac{size \,of \,intersection}{size \,of \,union} and an algorithm is generally said to be doing well enough if IoU >= 0.5.

Last updated