Created
July 18, 2018 10:10
-
-
Save insaneyilin/29db3cfd7624023104133d1d8b63e1d3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# from https://github.com/BVLC/caffe/blob/master/examples/detection.ipynb | |
def nms_detections(dets, overlap=0.3): | |
""" | |
Non-maximum suppression: Greedily select high-scoring detections and | |
skip detections that are significantly covered by a previously | |
selected detection. | |
This version is translated from Matlab code by Tomasz Malisiewicz, | |
who sped up Pedro Felzenszwalb's code. | |
Parameters | |
---------- | |
dets: ndarray | |
each row is ['xmin', 'ymin', 'xmax', 'ymax', 'score'] | |
overlap: float | |
minimum overlap ratio (0.3 default) | |
Output | |
------ | |
dets: ndarray | |
remaining after suppression. | |
""" | |
x1 = dets[:, 0] | |
y1 = dets[:, 1] | |
x2 = dets[:, 2] | |
y2 = dets[:, 3] | |
ind = np.argsort(dets[:, 4]) | |
w = x2 - x1 | |
h = y2 - y1 | |
area = (w * h).astype(float) | |
pick = [] | |
while len(ind) > 0: | |
i = ind[-1] | |
pick.append(i) | |
ind = ind[:-1] | |
xx1 = np.maximum(x1[i], x1[ind]) | |
yy1 = np.maximum(y1[i], y1[ind]) | |
xx2 = np.minimum(x2[i], x2[ind]) | |
yy2 = np.minimum(y2[i], y2[ind]) | |
w = np.maximum(0., xx2 - xx1) | |
h = np.maximum(0., yy2 - yy1) | |
wh = w * h | |
o = wh / (area[i] + area[ind] - wh) | |
ind = ind[np.nonzero(o <= overlap)[0]] | |
return dets[pick, :] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment