nms_python icon indicating copy to clipboard operation
nms_python copied to clipboard

The NMS algorithm given here is non-traditional at best

Open jdhao opened this issue 3 years ago • 0 comments

There are two main differences with the well-recognized NMS algorithm.

First, there is no scores for each bounding in the algorithm here, where in the well-recognized versions, scores for each bounding box must be provided.

Second, the overlap calculation here, does not calculate the IoU. The union of area of two boxes should be area1 + area2 - intersection

The authoritative implementation by Ross Girshick is here.

jdhao avatar Feb 15 '22 07:02 jdhao