DL之DeepLabv1:DeepLabv1算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

目录

DeepLabv1算法的简介(论文介绍)

0、实验结果

1、FCN局限性及其改进

DeepLabv1算法的架构详解

DeepLabv1算法的案例应用


相关文章
DL之DeepLabv1:DeepLabv1算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略
DL之DeepLabv1:DeepLabv1算法的架构详解
DL之DeepLabv2:DeepLab v2算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略
DL之DeepLabv2:DeepLab v2算法的架构详解
DL之DeepLabv3:DeepLab v3和DeepLab v3+算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略
DL之DeepLabv3:DeepLab v3和DeepLab v3+算法的架构详解

DeepLabv1算法的简介(论文介绍)

作者意识到FCN算法模型的局限性,因此,通过改进提出了DeepLabv1算法。

ABSTRACT  
       Deep Convolutional Neural Networks (DCNNs) have recently shown state of the  art performance in high level vision tasks, such as image classification and object  detection. This work brings together methods from DCNNs and probabilistic  graphical models for addressing the task of pixel-level classification (also called  ”semantic image segmentation”). We show that responses at the final layer of  DCNNs are not sufficiently localized for accurate object segmentation. This is  due to the very invariance properties that make DCNNs good for high level tasks.  We overcome this poor localization property of deep networks by combining the  responses at the final DCNN layer with a fully connected Conditional Random  Field (CRF). Qualitatively, our “DeepLab” system is able to localize segment  boundaries at a level of accuracy which is beyond previous methods. Quantitatively,  our method sets the new state-of-art at the PASCAL VOC-2012 semantic  image segmentation task, reaching 71.6% IOU accuracy in the test set. We show  how these results can be obtained efficiently: Careful network re-purposing and a  novel application of the ’hole’ algorithm from the wavelet community allow dense  computation of neural net responses at 8 frames per second on a modern GPU.
       深度卷积神经网络(DCNNs)最近在图像分类和目标检测等高级视觉任务中表现出了最先进的性能。这项工作结合了DCNNs和概率图形模型的方法来解决像素级分类(也称为“语义图像分割”)的任务。结果表明,对于精确的目标分割,DCNNs最后一层的响应没有得到足够的局部化。这是由于非常不变性的性质,使DCNNs适合高级任务。通过将DCNN最后一层的响应与完全连接的条件随机场(CRF)相结合,克服了深度网络的这种较差的定位特性。定性地说,我们的“DeepLab”系统能够以超出以往方法的精度水平定位段边界。量化地来说,我们的方法集新技术发展水平在PASCAL VOC-2012 语义图像分割任务,测试集的准确性达到71.6%的IOU。我们展示了可有效地获得这些结果:仔细的网络重新设计和一个新的应用小波社区的“孔”算法允许在现代GPU上以每秒8帧的速度密集计算神经网络响应。
DISCUSSION  
       Our work combines ideas from deep convolutional neural networks and fully-connected conditional  random fields, yielding a novel method able to produce semantically accurate predictions and detailed  segmentation maps, while being computationally efficient. Our experimental results show that  the proposed method significantly advances the state-of-art in the challenging PASCAL VOC 2012  semantic image segmentation task.  There are multiple aspects in our model that we intend to refine, such as fully integrating its two  main components (CNN and CRF) and train the whole system in an end-to-end fashion, similar to  Krahenb ¨ uhl & Koltun (2013); Chen et al. (2014); Zheng et al. (2015). We also plan to experiment ¨  with more datasets and apply our method to other sources of data such as depth maps or videos. Recently,  we have pursued model training with weakly supervised annotations, in the form of bounding  boxes or image-level labels (Papandreou et al., 2015).  At a higher level, our work lies in the intersection of convolutional neural networks and probabilistic  graphical models. We plan to further investigate the interplay of these two powerful classes of  methods and explore their synergistic potential for solving challenging computer vision tasks.
       我们的工作结合了深卷积神经网络和全连通条件随机场的思想,提出了一种新的方法,能够产生语义准确的预测和详细的分割地图,同时计算效率高。实验结果表明,该方法显著提高了PASCAL VOC 2012语义图像分割的水平。我们的模型中有很多方面是我们想要完善的,比如充分集成其两个主要组件(CNN和CRF),以端到端的方式训练整个系统,类似于Krahenb¨uhl & Koltun (2013);Chen等(2014);郑等(2015)。我们还计划用更多的数据集进行实验,并将我们的方法应用于其他数据源,如深度地图或视频。最近,我们以边界框或图像级标签的形式,采用弱监督注解进行模型训练(Papandreou et al., 2015)。在更高层次上,我们的工作是卷积神经网络和概率图形模型的交叉。我们计划进一步研究这两种功能强大的方法之间的相互作用,并探索它们在解决具有挑战性的计算机视觉任务方面的协同潜力。

论文
Liang-ChiehChen, George Papandreou, IasonasKokkinos, Kevin Murphy, Alan L. Yuille.
Semantic Image Segmentation with Deep Convolutional Nets and Fully Connected CRFs, ICCV, 2015.
https://arxiv.org/abs/1412.7062

0、实验结果

1、在Titan GPU 上运行速度达到了8FPS,全连接CRF 平均推断需要0.5s

2、与最先进的模型在valset的比较

Comparisons with state-of-the-art models on the valset

First row: images. 第一行:图像
Second row: ground truths. 第二行:基本真理
Third row: other recent models (Left: FCN-8s, Right: TTI-Zoomout-16).其他最新型模型(左:FCN-8s,右:TTI-Zoomout-16)
Fourth row: our DeepLab-CRF.  我们的Deeplab CRF

3、VOC 2012 VAL可视化结果

Visualization results on VOC 2012-val

For each row, we show the input image, the segmentation result delivered by the DCNN (DeepLab), and the refined segmentation result of the Fully Connected CRF (DeepLab-CRF).对于每一行,我们显示输入图像,DCNN (DeepLab)提供的分割结果,以及完全连接的CRF (DeepLab-CRF)的细化分割结果。

failure modes 失败的模型

1、FCN局限性及其改进

1、FCN局限性分析

  • 池化层可增大神经元的感受野,提高分类精度,但导致特征图分辨率降低
  • 倍率过大的上采样导致FCN的分割边界模糊

2、改进FCN

  • –仍以VGG-16为基础
  • –删去部分池化层(感受野变小)
  • –利用预训练的VGG-16在新网络上进行网络微调
  • –用带孔卷积(膨胀卷积)替换传统卷积(增大感受野,同时提升特征图的分辨率)
  • –利用全连接条件随机场提升分割边界的精度
  • –利用多尺度特征

DeepLabv1算法的架构详解

更新……

DeepLabv1算法的案例应用

更新……

DL之DeepLabv1:DeepLabv1算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略相关推荐

  1. DL之DeepLabv3:DeepLab v3和DeepLab v3+算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

    DL之DeepLabv3:DeepLab v3和DeepLab v3+算法的简介(论文介绍).架构详解.案例应用等配图集合之详细攻略 目录 DeepLab v3和DeepLab v3+算法的简介(论文 ...

  2. DL之DeepLabv2:DeepLab v2算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

    DL之DeepLabv2:DeepLab v2算法的简介(论文介绍).架构详解.案例应用等配图集合之详细攻略 目录 DeepLab v2算法的简介(论文介绍) 0.实验结果 1.DeepLab-v2 ...

  3. DL之DilatedConvolutions:Dilated Convolutions(膨胀卷积/扩张卷积)算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

    DL之DilatedConvolutions:Dilated Convolutions(膨胀卷积/扩张卷积)算法的简介(论文介绍).架构详解.案例应用等配图集合之详细攻略 目录 Dilated Con ...

  4. DL之ShuffleNetV2:ShuffleNetV2算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

    DL之ShuffleNetV2:ShuffleNetV2算法的简介(论文介绍).架构详解.案例应用等配图集合之详细攻略 目录 ShuffleNetV2算法的简介(论文介绍) 1.论文特点 2.基于硬件 ...

  5. DL之ShuffleNet:ShuffleNet算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

    DL之ShuffleNet:ShuffleNet算法的简介(论文介绍).架构详解.案例应用等配图集合之详细攻略 相关文章 DL之ShuffleNet:ShuffleNet算法的简介(论文介绍).架构详 ...

  6. DL之MobileNetV2:MobileNetV2算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

    DL之MobileNet V2:MobileNet V2算法的简介(论文介绍).架构详解.案例应用等配图集合之详细攻略 目录 MobileNetV2算法的简介(论文介绍) MobileNet V2算法 ...

  7. DL之MobileNet:MobileNet算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

    DL之MobileNet:MobileNet算法的简介(论文介绍).架构详解.案例应用等配图集合之详细攻略 目录 MobileNet算法的简介(论文介绍) 1.研究背景 2.传统的模型轻量化常用的方法 ...

  8. DL之SqueezeNet:SqueezeNet算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

    DL之SqueezeNet:SqueezeNet算法的简介(论文介绍).架构详解.案例应用等配图集合之详细攻略 目录 SqueezeNet算法的简介(论文介绍) 1.轻量级的CNN架构优势 2.主要特 ...

  9. DL之DenseNet:DenseNet算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

    DL之DenseNet:DenseNet算法的简介(论文介绍).架构详解.案例应用等配图集合之详细攻略 目录 DenseNet算法的简介(论文介绍) DenseNet算法的架构详解 3.DenseNe ...

最新文章

  1. 在MAC上给Anaconda的python安装tensorflow
  2. eq,neq,gt,lt等表达式缩写
  3. Union all的用法实例sql
  4. 友盟2015年Q2、Q3中国移动互联网趋势报告
  5. LeetCode Algorithm 35. 搜索插入位置
  6. opencv3.2.0 Cmake 3.8.0 + tdm-gcc-5.1.0-3
  7. Python | Tkinter中的文本区域和按钮
  8. 项目内出现广告位引争议,开源如何持续健康运营?
  9. 得益于数据中心芯片业务提升,AMD公司财务表现令投资者欣喜
  10. QT实现内录-电脑没有立体声混音,通过虚拟声卡实现内录
  11. 做webgl遇到的两个坑
  12. python电影推荐系统_电影推荐系统---协同过滤算法(SVD,NMF)
  13. 计算机网络感知层,物联网感知层与感知节点
  14. 80C51单片机:2.初学点亮发光二极管,流水灯案例
  15. python绘制箭头_python如何绘制坐标箭头?
  16. 蓝牙音箱方案硬件架构介绍
  17. scrum立会报告+燃尽图(第三周第二次)
  18. mysql 1264_关于MySQL的1264错误处理及sql_mode设置
  19. QT6在线安装下载速度慢的解决办法,QT6,QT5.15.1,QT5.15.0及旧版本都支持
  20. 合并 2 个有序列表(关键词:有序列表/有序/合并/归并)

热门文章

  1. oracle安装完成EM不能登录,oracle数据库不能登录em问题的解决方法
  2. 不起作用 微信小程序 顶部json_微信小程序之 新建项目默认结构
  3. zippo油和zorro油的区别_陶瓷轴承润滑油的性能质量最指标油的区别?_搜狐汽车...
  4. ZYNQ 调试遇到的问题
  5. Android -- 自定义StepView实现个人信息验证进度条
  6. Ansible自动化运维基础-------ploybook
  7. 实现类似表格内容动态滚动效果
  8. 基于GraphHopper搭建离线路径规划服务并可视化
  9. 如何保障消息中间件 100% 消息投递成功?如何保证消息幂等性?
  10. 基于Spring boot 2.1 使用redisson实现分布式锁