Module powerboxesrs::nms

source ·

Functions§

  • Performs non-maximum suppression (NMS) on a set of bounding boxes using their scores and IoU.
  • Performs non-maximum suppression (NMS) on a set of bounding using their score and IoU. This function internally uses an RTree to speed up the computation. It is recommended to use this function when the number of boxes is large. The RTree implementation is based on the rstar crate. It allows to perform queries in O(log n) time.