专栏名称: 机器学习研究会
机器学习研究会是北京大学大数据与机器学习创新中心旗下的学生组织,旨在构建一个机器学习从事者交流的平台。除了及时分享领域资讯外,协会还会举办各种业界巨头/学术神牛讲座、学术大牛沙龙分享会、real data 创新竞赛等活动。
目录
相关文章推荐
宝玉xp  ·  GitHub Copilot 现在也支持 ... ·  6 小时前  
宝玉xp  ·  转发微博-20250205142851 ·  昨天  
爱可可-爱生活  ·  【[661星]Meridian:谷歌推出的营 ... ·  4 天前  
极市平台  ·  一文详尽之Scaling Law ·  4 天前  
极市平台  ·  一文详尽之Scaling Law ·  4 天前  
51好读  ›  专栏  ›  机器学习研究会

【推荐】深度学习目标检测全面综述

机器学习研究会  · 公众号  · AI  · 2017-09-13 22:49

正文



点击上方 “机器学习研究会” 可以订阅
摘要

转自:爱可可-爱生活

With the rise of autonomous vehicles, smart video surveillance, facial detection and various people counting applications, fast and accurate object detection systems are rising in demand. These systems involve not only recognizing and classifying every object in an image, but localizing each one by drawing the appropriate bounding box around it. This makes object detection a significantly harder task than its traditional computer vision predecessor, image classification.

Fortunately, however, the most successful approaches to object detection are currently extensions of image classification models. A few months ago, Google released a new object detection API for Tensorflow. With this release came the pre-built architectures and weights for a few specific models:

  • Single Shot Multibox Detector (SSD) with MobileNets

  • SSD with Inception V2

  • Region-Based Fully Convolutional Networks (R-FCN) with Resnet 101

  • Faster RCNN with Resnet 101

  • Faster RCNN with Inception Resnet v2

In my last blog post, I covered the intuition behind the three base network architectures listed above: MobileNets, Inception, and ResNet. This time around, I want to do the same for Tensorflow’s object detection models: Faster R-CNN, R-FCN, and SSD. By the end of this post, we will hopefully have gained an understanding of how deep learning is applied to object detection, and how these object detection models both inspire and diverge from one another.

Faster R-CNN

Faster R-CNN is now a canonical model for deep learning-based object detection. It helped inspire many detection and segmentation models that came after it, including the two others we’re going to examine today. Unfortunately, we can’t really begin to understand Faster R-CNN without understanding its own predecessors, R-CNN and Fast R-CNN, so let’s take a quick dive into its ancestry.

R-CNN

R-CNN is the grand-daddy of Faster R-CNN. In other words, R-CNN really kicked things off.

R-CNN, or R egion-based C onvolutional N eural N etwork, consisted of 3 simple steps:

  1. Scan the input image for possible objects using an algorithm called Selective Search, generating ~2000 region proposals

  2. Run a convolutional neural net ( CNN ) on top of each of these region proposals

  3. Take the output of each CNN and feed it into a) an SVM to classify the region and b) a linear regressor to tighten the bounding box of the object, if such an object exists.

These 3 steps are illustrated in the image below:







请到「今天看啥」查看全文