object detection 总结
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 总结的更多相关文章
- 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- ...
- 论文阅读(Chenyi Chen——【ACCV2016】R-CNN for Small Object Detection)
Chenyi Chen--[ACCV2016]R-CNN for Small Object Detection 目录 作者和相关链接 方法概括 创新点和贡献 方法细节 实验结果 总结与收获点 参考文献 ...
- deep learning on object detection
回归工作一周,忙的头晕,看了两三篇文章,主要在写各种文档和走各种办事流程了-- 这次来写写object detection最近看的三篇文章吧.都不是最近的文章,但是是今年的文章,我也想借此让自己赶快熟 ...
- 论文阅读之 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 ...
- 目标检测--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 ...
- object detection技术演进:RCNN、Fast RCNN、Faster RCNN
object detection我的理解,就是在给定的图片中精确找到物体所在位置,并标注出物体的类别.object detection要解决的问题就是物体在哪里,是什么这整个流程的问题.然而,这个问题 ...
- TensorFlow Object Detection API(Windows下测试)
"Speed/accuracy trade-offs for modern convolutional object detectors." Huang J, Rathod V, ...
- Object Detection · RCNN论文解读
转载请注明作者:梦里茶 Object Detection,顾名思义就是从图像中检测出目标对象,具体而言是找到对象的位置,常见的数据集是PASCAL VOC系列.2010年-2012年,Object D ...
- 使用TensorFlow Object Detection API+Google ML Engine训练自己的手掌识别器
上次使用Google ML Engine跑了一下TensorFlow Object Detection API中的Quick Start(http://www.cnblogs.com/take-fet ...
- Object Detection︱RCNN、faster-RCNN框架的浅读与延伸内容笔记
一.RCNN,fast-RCNN.faster-RCNN进化史 本节由CDA深度学习课堂,唐宇迪老师教课,非常感谢唐老师课程中的论文解读,很有帮助. . 1.Selective search 如何寻找 ...
随机推荐
- Ethical Hacking - GAINING ACCESS(8)
Server Side Attacks NeXpose - configure and launch a scan Configure and initialize the application. ...
- Python Ethical Hacking - BACKDOORS(4)
REVERSE_BACKDOOR - cd command Access file system: cd command changes current working directory. It h ...
- Zabbix4.x如何安全传输数据
由于设备都在混合云,所以不少数据传输是通过公网,这样极大的增加了危险性,所以在Zabbix数据传输这块则进行PSK安全认证,由proxy主动收集agent数据后统一发送给server,这样只需要对pr ...
- DJANGO-天天生鲜项目从0到1-005-FastDFS与Nginx打造自定义文件存储系统
本项目基于B站UP主‘神奇的老黄’的教学视频‘天天生鲜Django项目’,视频讲的非常好,推荐新手观看学习 https://www.bilibili.com/video/BV1vt41147K8?p= ...
- python基础--14大内置模块(下)
(9)正则表达式和re模块(重点模块) 在我们学习这个模块之前,我们先明确一个关系.模块和实际工作的关系. 1)模块和实际工作时间的关系 1.time模块和时间是什么关系?time模块和时间本身是没有 ...
- 如何用redis做缓存
redis缓存 在互联网应用中经常需要用redis来缓存热点数据. redis数据在内存,可以保证数据读取的高效,接近每秒数十万次的吞吐量 减少下层持久层数据库读取压力,像mongodb,每秒近千次读 ...
- 手写Vuex源码
Vuex原理解析 Vuex是基于Vue的响应式原理基础,所以无法拿出来单独使用,必须在Vue的基础之上使用. 1.Vuex使用相关解析 main.js import store form './s ...
- setTimeout、clearTimeout、setInterval
setTimeout(cb, ms) setTimeout(cb, ms) 全局函数在指定的毫秒(ms)数后执行指定函数(cb).:setTimeout() 只执行一次指定函数. 返回一个代表定时器的 ...
- 使用AOP获取自定义注解的内容
目录结构: 一:自定义注解 package org.example.annotation; import java.lang.annotation.ElementType; import java.l ...
- PHP array_unique() 函数
实例 移除数组中重复的值: <?php$a=array("a"=>"red","b"=>"green" ...