
object detection
文章平均质量分 52
shchojj
这个作者很懒,什么都没留下…
展开
-
目标检测mAP
参考:https://segmentfault.com/a/1190000023219395https://jonathan-hui.medium.com/map-mean-average-precision-for-object-detection-45c121a31173mAP(Mean Average Precision)也就是平均精度均值。mean->针对的是所有的类别的平均。average->针对的是所有数据中某一类的平均。AP(average precision.转载 2021-12-10 10:32:12 · 115 阅读 · 0 评论 -
faster rcnn代码解读(十一)做一个小实验
因为和公司项目相关,所以就只截图展示,不做代码展示。看一下,是不是还挺好玩的。。。。原创 2020-04-10 10:25:13 · 192 阅读 · 0 评论 -
faster rcnn代码解读(十)faster_rcnn_loss
faster rcnn代码解读参考:https://github.com/adityaarun1/pytorch_fast-er_rcnn https://github.com/jwyang/faster-rcnn.pytorch最后一个环节就是需要串联loss def faster_rcnn_loss(self): ''' rpn_cls_...原创 2020-04-08 15:12:49 · 360 阅读 · 0 评论 -
faster rcnn代码解读(九)rcnn_head
faster rcnn代码解读参考:https://github.com/adityaarun1/pytorch_fast-er_rcnn https://github.com/jwyang/faster-rcnn.pytorchrcnn loss与rpn loss计算方式差不多,rcnn的最后一个组合环节就是rcnn_head,也就是把rpn环节生成的proposal与这是目标...原创 2020-04-08 14:49:48 · 1034 阅读 · 0 评论 -
faster rcnn代码解读(八)rcnn_proposal_target_gen
faster rcnn代码解读参考:https://github.com/adityaarun1/pytorch_fast-er_rcnn https://github.com/jwyang/faster-rcnn.pytorch之前rpn的anchor生成和target以及loss都有了,rpn环节以及是完整的了,下面就是rcnn环节。rcnn的输入其实就是rpn的输出。...原创 2020-04-08 14:43:17 · 945 阅读 · 0 评论 -
faster rcnn代码解读(七)rpn_loss
faster rcnn代码解读参考:https://github.com/adityaarun1/pytorch_fast-er_rcnn https://github.com/jwyang/faster-rcnn.pytorch其实主要的是bbox的loss、def smooth_l1_loss(bbox_pred, bbox_ta...原创 2020-04-08 13:47:10 · 378 阅读 · 0 评论 -
faster rcnn代码解读(六)anchor_target_layer
faster rcnn代码解读参考:https://github.com/adityaarun1/pytorch_fast-er_rcnn https://github.com/jwyang/faster-rcnn.pytorch前面已经涉及到了feature map的提取rpn_head回归的bg/fg以及偏移量(中心点+长宽)proposals_layer生成了fea...原创 2020-04-08 13:32:14 · 671 阅读 · 0 评论 -
faster rcnn代码解读(五)proposal_layer
faster rcnn代码解读参考:https://github.com/adityaarun1/pytorch_fast-er_rcnn https://github.com/jwyang/faster-rcnn.pytorch之前的rpn_head主要是为了获取feature map分类的fg/bg的anchor。而proposal_layer是为了将所有的anchor进...原创 2020-04-07 19:03:03 · 929 阅读 · 3 评论 -
faster rcnn代码解读(四)rpn_nms
这里的NMS(non maximum suppression)用的是torchvision的nms,直接引用的,没有使用cpp_extension步骤:根据score排序(得分最大的当然最先被保留下来)。 遍历出一个bbox(按照得分从大到小获取),如果该bbox与保留下来的最大bbox的iou阈值小于阈值threshold,我们就保留下来,否则不保留...原创 2020-04-07 17:15:04 · 1111 阅读 · 1 评论 -
faster rcnn代码解读(三)rpn_head
faster rcnn代码解读参考:https://github.com/adityaarun1/pytorch_fast-er_rcnn https://github.com/jwyang/faster-rcnn.pytorchrpn_head主要是为了从feature中分类出相应的background和foreground。class RpnHead(nn.Module...原创 2020-04-07 16:57:41 · 2508 阅读 · 0 评论 -
faster rcnn代码解读(二)anchor的生成
faster rcnn代码解读参考:https://github.com/adityaarun1/pytorch_fast-er_rcnn https://github.com/jwyang/faster-rcnn.pytorch单独说一下anchor生成。一、首先是为一个像素点生成anchordef generate_anchors(base_size=16, r...原创 2020-04-06 23:38:24 · 888 阅读 · 5 评论 -
faster rcnn代码解读(一)特征提取
faster rcnn代码解读参考:https://github.com/adityaarun1/pytorch_fast-er_rcnn https://github.com/jwyang/faster-rcnn.pytorch实际上是以便整理以便修改吧。这里借用的是vgg16的迁移学习(transfer learning)进行的或者说微调(fine-tuning)。一...原创 2020-04-04 10:04:16 · 2942 阅读 · 0 评论 -
DIoU
翻译 2020-03-17 13:53:20 · 410 阅读 · 0 评论 -
KL-Loss
原创 2020-03-12 11:19:38 · 3182 阅读 · 2 评论 -
UANET
原创 2020-03-12 10:10:28 · 329 阅读 · 0 评论