Open kaishijeng opened 7 years ago
I've not tested cpu_soft_nms yet.
OK. Let me know if you have tested it
Thanks,
On Tue, Sep 12, 2017 at 5:42 PM, chinakook notifications@github.com wrote:
I've not tested cpu_soft_nms yet.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/chinakook/hr101_mxnet/issues/4#issuecomment-329024338, or mute the thread https://github.com/notifications/unsubscribe-auth/AMGg3qzDwJ0lYYMmj56cdslnkobdd1r4ks5shyT2gaJpZM4PUEHL .
I tried to use snms as below, but result is bad (See the attachment)..
refind_idx = cpu_nms.cpu_soft_nms(bboxes.astype(np.float32), nms_thresh).
But regular cpu_nms as below is OK:. refind_idx = cpu_nms.cpu_nms(bboxes.astype(np.float32), nms_thresh).
Thanks,