Skip to content
Snippets Groups Projects
Commit d3517172 authored by Ross Girshick's avatar Ross Girshick
Browse files

fix nms call

parent f36487fd
No related branches found
No related tags found
No related merge requests found
......@@ -251,7 +251,7 @@ def test_net(net, imdb):
.astype(np.float32, copy=False)
if 0:
keep = utils.nms.nms(all_boxes[j][i], 0.3)
keep = utils.cython_nms.nms(all_boxes[j][i], 0.3)
_vis_detections(im, imdb.classes[j], all_boxes[j][i][keep, :])
_t['misc'].toc()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment