Caffe ssd 之NMS实现
NMS部分主要用在DetectionOutput层中,用于对预测得到的分数和boxes处理
在此层的Forward中调用,如下:
ApplyNMSFast(bboxes, scores, confidence_threshold_, nms_threshold_, eta_,
top_k_, &(indices[c]));
此ApplyNMSFast方法是在caffe/util/...
原创
2019-04-26 12:00:32 ·
1653 阅读 ·
0 评论