1、基础
  自己对于YOLOV1,2,3都比较熟悉。 RCNN也比较熟悉。这个是自己目前掌握的基础
2、第一步
  看一下2019年的井喷的anchor free的网络
3、第二步
  看一下以往,引用多的网路
4、第三步
  看一下,2020最新的,但是在pwcode上面排名靠前的网络

2020优秀论文:
EfficientDet: Scalable and Efficient Object Detection,57
DetectoRS: Detecting Objects with Recursive Feature Pyramid and Switchable Atrous Convolution
Rethinking Pre-training and Self-training
Revisiting the Sibling Head in Object Detector
Deep High-Resolution Representation Learning for Visual Recognition*52
HoughNet: Integrating near and long-range evidence for bottom-up object detection ??
M2Det: A Single-Shot Object Detector based on Multi-Level Feature Pyramid Network,101

优秀论文:
Acquisition of Localization Confidence for Accurate Object Detection,182
Scale-Aware Trident Networks for Object Detection,141
GCNet: Non-local Networks Meet Squeeze-Excitation Networks and Beyond,107
Path Aggregation Network for Instance Segmentation,400
Hybrid Task Cascade for Instance Segmentation ,139
SNIPER: Efficient Multi-Scale Training,141
Deformable ConvNets v2: More Deformable, Better Results,188
An Analysis of Scale Invariance in Object Detection - SNIP,218
Single-Shot Refinement Neural Network for Object Detection,414
Attention Augmented Convolutional Networks,58
SaccadeNet: A Fast and Accurate Object Detector

two stage:
Grid R-CNN, plus,46
Cascade R-CNN: Delving into High Quality Object Detection,571
Libra R-CNN: Towards Balanced Learning for Object Detection,115
Dynamic R-CNN: Towards High Quality Object Detection via Dynamic Training

one stage:
ExtremNet :Bottom-up Object Detection by Grouping Extreme and Center Points 2019,129
YoLOV5
YOLOv4: Optimal Speed and Accuracy of Object Detection*,17

anchor free的网络:
Scale-Equalizing Pyramid Convolution for Object Detection,2020
FoveaBox: Beyond Anchor-based Object Detector 2019,52
CornerNet: Detecting Objects as Paired Keypoints 2018 ,445
CornerNet-Lite (2019) (https://arxiv.org/abs/1904.08900)
CenterNet: Keypoint Triplets for Object Detection 2019,129
FCOS: Fully Convolutional One-Stage Object Detection 2019,206
Feature Selective Anchor-Free Module for Single-Shot Object Detection,144

object detection 总结的更多相关文章

  1. tensorfolw配置过程中遇到的一些问题及其解决过程的记录(配置SqueezeDet: Unified, Small, Low Power Fully Convolutional Neural Networks for Real-Time Object Detection for Autonomous Driving)

    今天看到一篇关于检测的论文<SqueezeDet: Unified, Small, Low Power Fully Convolutional Neural Networks for Real- ...

  2. 论文阅读(Chenyi Chen——【ACCV2016】R-CNN for Small Object Detection)

    Chenyi Chen--[ACCV2016]R-CNN for Small Object Detection 目录 作者和相关链接 方法概括 创新点和贡献 方法细节 实验结果 总结与收获点 参考文献 ...

  3. deep learning on object detection

    回归工作一周,忙的头晕,看了两三篇文章,主要在写各种文档和走各种办事流程了-- 这次来写写object detection最近看的三篇文章吧.都不是最近的文章,但是是今年的文章,我也想借此让自己赶快熟 ...

  4. 论文阅读之 DECOLOR: Moving Object Detection by Detecting Contiguous Outliers in the Low-Rank Representation

    DECOLOR: Moving Object Detection by Detecting Contiguous Outliers in the Low-Rank Representation Xia ...

  5. 目标检测--Rich feature hierarchies for accurate object detection and semantic segmentation(CVPR 2014)

    Rich feature hierarchies for accurate object detection and semantic segmentation 作者: Ross Girshick J ...

  6. object detection技术演进:RCNN、Fast RCNN、Faster RCNN

    object detection我的理解,就是在给定的图片中精确找到物体所在位置,并标注出物体的类别.object detection要解决的问题就是物体在哪里,是什么这整个流程的问题.然而,这个问题 ...

  7. TensorFlow Object Detection API(Windows下测试)

    "Speed/accuracy trade-offs for modern convolutional object detectors." Huang J, Rathod V, ...

  8. Object Detection · RCNN论文解读

    转载请注明作者:梦里茶 Object Detection,顾名思义就是从图像中检测出目标对象,具体而言是找到对象的位置,常见的数据集是PASCAL VOC系列.2010年-2012年,Object D ...

  9. 使用TensorFlow Object Detection API+Google ML Engine训练自己的手掌识别器

    上次使用Google ML Engine跑了一下TensorFlow Object Detection API中的Quick Start(http://www.cnblogs.com/take-fet ...

  10. Object Detection︱RCNN、faster-RCNN框架的浅读与延伸内容笔记

    一.RCNN,fast-RCNN.faster-RCNN进化史 本节由CDA深度学习课堂,唐宇迪老师教课,非常感谢唐老师课程中的论文解读,很有帮助. . 1.Selective search 如何寻找 ...

随机推荐

  1. spring boot实现简单的登录拦截

    一.思路 1.在pom.xml导入相关包 2.先写个简单的认证适配器(WebSecurityConfig extends WebSecurityConfigurerAdapter),登录拦截后就会跳转 ...

  2. J.U.C体系进阶(三)- juc-atomic 原子类框架

    Java - J.U.C体系进阶 作者:Kerwin 邮箱:806857264@qq.com 说到做到,就是我的忍道! juc-atomic 原子类框架 AtomicInteger AtomicInt ...

  3. [译]使用DOT语言和GraphvizOnline来可视化你的ASP.NETCore3.0终结点01

    这是系列文章中的第一篇:使用GraphvizOnline可视化ASP.NETCore3.0终结点.. 第1部分-使用DOT语言来可视化你的ASP.NETCore3.0终结点(本文) 第2部分-向ASP ...

  4. Active Directory - Creating Public and Personnel Share Folders via Script

    Create and save the following scripts on the DC folder \\Winsever2019\sysvol\pandabusiness.local\scr ...

  5. 足球动图gif(一)

  6. Python3 生成器解析

    第6章 函数 6.1 函数的定义和调用 6.2 参数传递 6.3 函数返回值 6.4 变量作用域 6.5 匿名函数(lambda) 6.6 递归函数 6.7 迭代器 6.8 生成器 6.9 装饰器 6 ...

  7. Onedrive分享型网盘搭建 - OneManager

    注册账号 部署OneManager 注册完账号后打开网址:https://heroku.com/deploy?template=https://github.com/qkqpttgf/OneManag ...

  8. map数据按照list排序

    简介 (Introduction): 背景 需要对字段进行排序,但是,一个字段的结果存在一个map中,一个存在list中,需要让map的数组,按照list的顺序进行排序 结构图 list顺序 [ { ...

  9. Shell基本语法---处理海量数据的sed命令

    sed命令 shell脚本三剑客之一 处理时,把当前处理的行存储在临时缓冲区中,称为模式空间,接着用sed命令处理缓冲区中的内容,处理完成后,把缓冲区的内容送往屏幕.接着处理下一行,这样不断重复,直到 ...

  10. SQL数据单条转多条(Lateral View)

    Lateral View和split,explode等UDTF一起使用,它能够将一行数据拆成多行数据,并在此基础上对拆分后的数据进行聚合. 单个Lateral View语句语法定义如下:lateral ...