| Algorithm 2: The pseudocode of non-maximum suppression (NMS) for our approach |
| Original Bounding Boxes: , , refers to the set of original bounding boxes refers to the set of confidences of Detection result: refers to the set of the final bounding boxes 1: 2: while do: 3: 4: ; ; 5: for do: 6: if 7: ; 8: end 9: end 10: end |