XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network

时间:2022-03-11 11:47:12

XiangBai——【AAAI2017】TextBoxes:A Fast Text Detector with a Single Deep Neural Network


目录

  • 作者和相关链接
  • 方法概括
  • 创新点和贡献
  • 方法细节
  • 实验结果
  • 总结与收获点

作者和相关链接

    • 作者

XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network

方法概括

  1. 文章核心

    • 改进版的SSD用来解决文字检测问题
  2. 端到端识别的pipeline:

    • Step 1: 图像输入到修改版SSD网络中 + 非极大值抑制(NMS)→ 输出候选检测结果
    • Step 2: 候选检测结果 + CRNN进行单词识别 → 新的检测结果 + 识别结果
  3. 方法的性能

    • 多尺度版本-定位:ICDAR2011-0.85(f),ICDAR2013-0.85(f),0.73s/per image
    • 单尺度版本-定位ICDAR2011-0.80(f),ICDAR2013-0.80(f),0.09s/per image
  4. 改进的SSD的地方:

    • default box的长宽比进行修改(长条形),使其更适合文字检测(单词)
    • 作为classifier的卷积滤波器大小从3*3变成1*5,更适合文字检测
    • SSD原来为多类检测问题,现在转为单类检测问题
    • 从输入图像为单尺度变为多尺度
    • 利用识别来调整检测的结果(text spotting)

创新点和贡献

  1. 创新点

    • 把SSD进行修改,使其适用于文字检测(SSD本身对小目标识别不鲁棒)
  2. 贡献

    • 提出一个端到端可训练的非常简洁的文字检测框架(SSD本身是single stage的,不像普通方法需要有多步骤组成)
    • 提出一个完整的端到端识别的文字检测+识别框架
    • 实验方法结果好,速度快

方法细节

  1. 相关背景——文字识别的任务

    • 文字检测
    • 文字/单词识别
    • 端到端文字识别 = 文字 + 识别
    • text spotting:和文字检测不同的是,可以利用带字典的文字识别进行调整检测结果,最终是用文字检测的结果进行评判
  2. 相关背景——SSD

    • SSD的网络结构
    • XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network
    • SSD的default box
    • XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network
    • Fig. 1: SSD framework. (a) SSD only needs an input image and ground truth boxes for each object during training. In a convolutional fashion, we evaluate a small set (e.g. 4) of default boxes of different aspect ratios at each location in several feature maps with different scales (e.g. 8 × 8 and 4 × 4 in (b) and (c)). For each default box, we predict both the shape offsets and the confidences for all object categories ((c1; c2; · · · ; cp)). At training time, we first match these default boxes to the ground truth boxes. For example, we have matched two default boxes with the cat and one with the dog, which are treated as positives and the rest as negatives. The model loss is a weighted sum between localization loss (e.g. Smooth L1 [6]) and confidence loss (e.g. Softmax). 

  3. 相关背景——CRNN

    • CRNN的网络结构
    • XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network
  4. TextBoxes与SSD网络结构对比

    • TextBoxes网络结构
    • XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network
    • SSD 网络结构XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network
  5. Text-box layers的输出

    (与SSD一样)

    • XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network
  6. TextBoxes与SSD不同的修改细节

    • default box长宽比

      • XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural NetworkXiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network
      • (右边图)Figure 2: Illustration of default boxes for a 4*4 grid. For better visualization, only a column of default boxes whose aspect ratios 1 and 5 are plotted. The rest of the aspect ratios are 2,3,7 and 10, which are placed similarly. The black (aspect ratio: 5) and blue (ar: 1) default boxes are centered in their cells. The green (ar: 5) and red (ar: 1) boxes have the same aspect ratios and a vertical offset(half of the height of the cell) to the grid center respectively 

    • 卷积滤波器大小

      • XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network
    • 损失函数

      • XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network
  7. 多尺度输入

    • XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network
  8. TextBoxes+CRNN进行识别

    • XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network

实验结果

  1. 定位

    • XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network
  2. text spotting和端到端识别

    • XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network
  3. 效果展示

    • XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network

总结与收获点

  1. 原始的SSD是无法直接用在文字上的,需要进行许多修改才能达到比较好的效果,这一点作者在实验中也证明了
  2. 现在越来越多用Faster r-cnn,ssd,yolo,这类一般的目标检测方法进行修改后用在特定的目标检测上(例如文字,行人),这些方法不但速度快,而且鲁棒性也高,很重要一点,越来越倾向于端到端训练,这是因为single stage和传统的step-wise的方法相比有很多优势,例如,总体训练简单,没有stage衔接上的性能损耗,没有逐步的误差积累等等;

XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network的更多相关文章

  1. 论文阅读(XiangBai——【AAAI2017】TextBoxes_A Fast Text Detector with a Single Deep Neural Network)

    XiangBai——[AAAI2017]TextBoxes:A Fast Text Detector with a Single Deep Neural Network 目录 作者和相关链接 方法概括 ...

  2. XiangBai——【CVPR2018】Multi-Oriented Scene Text Detection via Corner Localization and Region Segmentation

    XiangBai——[CVPR2018]Multi-Oriented Scene Text Detection via Corner Localization and Region Segmentat ...

  3. 论文阅读(XiangBai——【CVPR2017】Detecting Oriented Text in Natural Images by Linking Segments)

    XiangBai——[CVPR2017]Detecting Oriented Text in Natural Images by link Segments 目录 作者和相关链接 方法概括 方法细节 ...

  4. 【RS】Automatic recommendation technology for learning resources with convolutional neural network - 基于卷积神经网络的学习资源自动推荐技术

    [论文标题]Automatic recommendation technology for learning resources with convolutional neural network ( ...

  5. 论文阅读(XiangBai——【PAMI2018】ASTER_An Attentional Scene Text Recognizer with Flexible Rectification )

    目录 XiangBai--[PAMI2018]ASTER_An Attentional Scene Text Recognizer with Flexible Rectification 作者和论文 ...

  6. 论文阅读(Lukas Neuman——【ICDAR2015】Efficient Scene Text Localization and Recognition with Local Character Refinement)

    Lukas Neuman--[ICDAR2015]Efficient Scene Text Localization and Recognition with Local Character Refi ...

  7. 论文阅读(Weilin Huang——【AAAI2016】Reading Scene Text in Deep Convolutional Sequences)

    Weilin Huang--[AAAI2016]Reading Scene Text in Deep Convolutional Sequences 目录 作者和相关链接 方法概括 创新点和贡献 方法 ...

  8. 【论文笔记】Malware Detection with Deep Neural Network Using Process Behavior

    [论文笔记]Malware Detection with Deep Neural Network Using Process Behavior 论文基本信息 会议: IEEE(2016 IEEE 40 ...

  9. 论文阅读笔记(三)【AAAI2017】:Learning Heterogeneous Dictionary Pair with Feature Projection Matrix for Pedestrian Video Retrieval via Single Query Image

    Introduction (1)IVPR问题: 根据一张图片从视频中识别出行人的方法称为 image to video person re-id(IVPR) 应用: ① 通过嫌犯照片,从视频中识别出嫌 ...

随机推荐

  1. Android之RecyclerView的原生Bug-Inconsistency detected. Invalid view holder adapter positionViewHolder{a1bbfa3 position=2 id=-1, oldPos=-1, pLpos:-1 no parent}

    今天在运行自己编写的App时,突然发现App在运行时闪退,然后就查看了Android Studio的Log,发现了这个错误,上网查了一下,才知道是RecyclerView的原生Bug,在数据更新时会出 ...

  2. sql语句对数据库表进行加锁和解锁

    锁是数据库中的一个非常重要的概念,它主要用于多用户环境下保证数据库完整性和一致性. 我们知道,多个用户能够同时操纵同一个数据库中的数据,会发生数据不一致现象.即如果没有锁定且多个用户同时访问一个数据库 ...

  3. IE6中常见兼容性问题及浏览器显示难题

    1.双倍边距Bug 问题描述:假如有一个ul,里面有若干li,当li设置为左浮动时,此时设置li的margin-left为10px,会在最左侧呈现双倍情况.即20px 正常显示: IE6显示: 修正方 ...

  4. How to Download APK Files from Google Play Store

    Evozi, an Android app developer, offers a one-click online APK download app that lets you download t ...

  5. Python 学习笔记(2) - 基本概念、运算符与表达式

    字符串 - 可以使用 3 种形式 - 单引号 :「'your string'」 - 双引号 :「"your string"」 - 三引号 :「'''your string''' 或 ...

  6. PHP打印各种金字塔!

    PHP打印各种金字塔! <?php for($i=1;$i<=7;$i++){ for($j=1;$j<=5-$i;$j++){ echo ''; } for($k=1;$k< ...

  7. servlet&lpar;jsp&rpar;中的重定向和转发

    servlet(jsp)中的重定向和转发 由一个servlet(jsp)从内部转向还有一个servlet(jsp)有两种方式:转发和重定向. 转发:是由一个web组件(servlet)将未完毕的处理交 ...

  8. VBS基础篇 - 对象&lpar;7&rpar; - TextStream对象

    VBS基础篇 - 对象(7) - TextStream对象   TextStream对象是用于访问文本文件的对象,它是FileSystemObject一个独立的附属对象,但在使用TextStream对 ...

  9. PHP 包含

    PHP 包含文件 PHP include 和 require 语句 在 PHP 中,您可以在服务器执行 PHP 文件之前在该文件中插入一个文件的内容. include 和 require 语句用于在执 ...

  10. maven 基础

    maven安装链接 maven基础命令: 编译命令:mvn compile 测试命令:mvn test 清空命令:mvn clean 打包命令:mvn package 打包命令:mvn install ...