码迷,mamicode.com
首页 > 其他好文 > 详细

CNN检测摘要

时间:2015-08-17 19:38:37      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:

近一两年cnn在检测这块的发展突飞猛进,下面详细review下整个cnn检测领域模型的发展,以及在时间性能上的发展。

一、RCNN

流程:

Extract region(off model) + extract features(on model) + classifyregions according feature (svm or softmax)

性能:

技术分享

技术分享

精度:

技术分享

 

二、SPP-NET

流程:

先做conv,再根据window提取特征。为什么rcnn不能也这么做呢?原因在于spp对不同尺度进行了max pool处理能更好的满足不同尺度window的特征表达。

性能:

核心思想在全图只做一次conv,这个和overfeat的思想一致

 技术分享

精度:

技术分享

三、FAST-RCNN

流程:

引入了ROI层pooling,以及multi-task同时训练分类和检测框。

性能:

Compared to SPPnet, Fast R-CNN trains VGG163× faster, tests 10× faster, and is more accurate.

另外还额外提出了fc层SVD的思想

技术分享

Vgg时间性能分析

 技术分享

精度:

The improvement of Fast R-CNN over SPPnetillustrates that even though Fast R-CNN uses single-scale training and testing,fine-tuning the conv layers provides a large improvement in mAP (from 63.1% to66.9%). Traditional R-CNN achieves a mAP of 66.0%. These results arepragmatically valuable given how much faster and easier Fast R-CNN is to trainand test, which we discuss next.

 

 

 

 

四、FASTER-RCNN

流程:

在fast-rcnn的基础上,借鉴了FCN的思路,将proposal阶段转化成一个layer加进了网络一起学习。

技术分享

性能:

cost-free for proposal

精度:

our detection system has a frame rate of5fps (including all steps) on a GPU, while achieving state-of-the-art objectdetection accuracy on PASCAL VOC 2007 (73.2% mAP) and 2012 (70.4% mAP) using300 proposals per image

 

 

 

版权声明:本文为博主原创文章,未经博主允许不得转载。

CNN检测摘要

标签:

原文地址:http://blog.csdn.net/sunbaigui/article/details/47728251

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!