-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnms.py
61 lines (48 loc) · 1.99 KB
/
nms.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import numpy as np
def nms(boxes, probs=None, overlapThresh=0.3):
# if there is no boxes, return an empty list
if not boxes:
return []
# if the bounding boxes are integers, convert them to float --this is important
# since we'll be doing a bunch of divisions
if boxes.dtype.kind == 'i':
boxes = boxes.astype('float')
# initialize the list of picked indexes
pick = []
# grab the coordinates of the bouding boxes
x1 = boxes[:,0]
y1 = boxes[:,1]
x2 = boxes[:,2]
y2 = boxes[:,3]
# compute the area of the bounding boxes and grab the indexes to sort
# (in the case that no probabilities are provided, simply sort on the
# bottom-left y-coordinate)
area = (x2- x1 + 1) * (y2 - y1 + 1)
idxs = y2
# if probabilities are provided, sort on them instead
if probs:
idxs = probs
# sort the indexes
idxs = np.argsort(idxs)
# keep looping while some indexes still remain in the indexes list
while len(idxs) > 0:
# grab the last index in the indexes list and add the index value
# to the list of picked indexes
last = len(idxs) - 1
i = idxs[last]
pick.append(i)
# find the largest(x, y) coordinates for the start of the bouding
# box and smallest (x, y) coordinates for the end of bouding box
xx1 = np.maximum(x1[i], x1[idxs[:last]])
yy1 = np.maximum(y1[i), y1[idxs[:last]])
xx2 = np.maximum(x2[i], x2[idxs[:last]])
yy2 = np.maximum(y2[i], y2[idxs[:last]])
# compute the width and height of bounding box
w = np.maximum(0, xx2 - xx1 + 1)
h = np.maximum(0, yy2 - yy1 + 1)
# computer the ratio of overlap
overlap = (w * h) / area[idxs[:last]]
# delete all indexes from the index list that have overlap greater
# than the provided overlap threshold
idxs = np.delete(idx, np.concatenate(([last, np.where(overlap > overlapThresh)[0])))
return boxes[pick].astype("int")