
小目标检测
Evan Yi
不忘初心,砥砺前行!
展开
-
SSD.pytorch学习
1、如果只有一类,比如做人脸检测、行人检测只有一个类名要写('类名',),逗号千万不能忘!https://www.freesion.com/article/7565405327/原创 2020-06-02 00:49:17 · 233 阅读 · 0 评论 -
NMS算法-pytorch版本
def nms(self, bboxes, scores, thresh=0.5): x1 = bboxes[:,0] y1 = bboxes[:,1] x2 = bboxes[:,2] y2 = bboxes[:,3] # 计算每个box的面积 areas = (x2-x1+1)*(y2-y1+1) # 对得分进行降序排列,order为降序排列的索引 .原创 2020-05-30 20:44:52 · 1029 阅读 · 1 评论 -
小目标检测笔记
https://www.cnblogs.com/hellojamest/p/11426565.htmlhttps://cloud.tencent.com/developer/article/1414911https://zhuanlan.zhihu.com/p/57760020https://note.youdao.com/ynoteshare1/index.html?id=92c...原创 2019-12-27 16:21:23 · 370 阅读 · 0 评论