美文网首页
DeepLab相关文献

DeepLab相关文献

作者: 星海之眸 | 来源:发表于2018-04-19 17:18 被阅读212次

工程链接

Semantic Segmentation

  • 语义分割: 即图像像素级别的分类
  • 将图像分块,每一个区域代表有意义的物体
  • 对每一个物体赋值一个物理标签

主要的应用

  • 自动驾驶
  • 医疗图像

DeepLab的主要思路

DeepLabV1与DeepLabV2

  1. 使用DCNN来分类并产生一个关于分割的一个粗糙的预测(平滑的,带有模糊的heat map)
  2. 通过条件随机场(CRF)重新调整结果

如图所示:


DCNN

带洞深度卷积

  • Striding
  • Pooling

CRF

此处主要涉及与DCNN的相关比较

  1. 首先DCNN将分类的准确性与定位的准确性进行了相关权衡
  2. DCNN所生成的热力图可以很好的预测分类结果以及物体的大致位置
  3. 精确的大纲效率比较低

然而CRF将像素之间的关系进行建模, 通过下面的方式:

  • 相近的像素有更大的概率为同一个label
  • CRF将对像素标签的赋值转化为每一个像素的概率
  • 通过迭代的方式来调整结果直至收敛

效果如下图所示:


CRF算法步骤效果.png

DeepLabV1

网络相关描述:

  • DeepLab v1 is constructed by modifying VGG-16
  • Fully connected layers of VGG-16 are converted to convolutional layers
  • Subsampling is skipped after last two max-pooling layers
  • Convolutional filters in the layers that follow pooling are modified to atrous
  • Model weights of Imagenet-pretrained VGG-16 network are finetuned

网络结构图:


DeepLabV1.png

图像分割的结果:


DeepLabV1_result.png

DeepLabV2

网络相关描述

  • Better segmentation of objects at multiple scales (using ASPP)
  • Adapting ResNet image classification DCNN
  • Learning rate policy

ASPP

之所以引入ASPP(Atrous Spatial Pyramid Pooling)的原因如下:

  1. 图片中物体的尺寸大小不一
  2. Computationally efficient scheme of resampling a given feature layer at multiple rates prior to convolution
  3. 使用多个并行的带洞卷积层来进行不同采样率的卷积

ASPP的一些细节以及提升的结果图:


ASPP_details.png ASPP_result.png

网络的输出结果图:


DeepLabV2_result.png

DeepLabV2 & DeepLabV3

优点

  • Speed: By virtue of the ‘atrous’ algorithm, dense DCNN operates at 8 fps, while fully-connected CRF requires 0.5 second
  • Accuracy: state-of-the-art results achieved on several state-of-art datasets
  • Simplicity: the system is composed of a cascade of two fairly wellestablished modules, DCNNs and CRFs

DeepLabV3

与前两个版本的变动:

  • The proposed framework is general and could be applied to any network
  • Several copies of the last ResNet block are duplicated, and arranged in cascade
  • Batch normalization is included within ASPP
  • CRF is not used

关于ASPP的变动:

  • Batch normalization is included within ASPP
  • As the sampling rate becomes larger, number of valid filter weights becomes smaller
  • Global average pooling on last feature map of the model

ASPP的更新的一些细节:


ASPP_in_V3.png

DeepLabV3的最终效果:


DeepLabV3_result.png

DeepLabV3+

这里面使用一张图来概括最大的更新:


DeepLabV3+.png

其较为详细的结构图如下:


DeepLabV3+_pipline.png

另外Xception模型所作出的更改如图所示:


Xception_modified.png

最终在PASCAL VOC 2012上的测试结果与其他方法比较结果下表:


Result_table.png

最后,放出此模型最终的一些可视化展示:


DeepLabV3+_result.png

[完]

相关文章

  • DeepLab相关文献

    工程链接 Semantic Segmentation 语义分割: 即图像像素级别的分类将图像分块,每一个区域代表有...

  • DeepLab系列之V3+

    DeepLab系列之V1 DeepLab系列之V2 DeepLab系列之V3 DeepLab系列之V3+ 论文地址...

  • DeepLab系列之V2

    DeepLab系列之V1 DeepLab系列之V2 论文地址:DeepLab: Semantic Image Se...

  • DeepLab系列之V3

    DeepLab系列之V1 DeepLab系列之V2 DeepLab系列之V3 论文地址:DeepLabv3: Re...

  • TensorFlow 实现语义分割模型:DeepLab V3+(

    本文将实现 deeplab v3 + 模型(参考:DeepLab 官方开源代码)

  • 专注语义分割系列技术

    1) Deeplab V3和Deeplab V3+ https://blog.csdn.net/fish_l...

  • 文献管理相关

    写在前面的话 本篇是之前实验室4061文件建设的一些想法(持续更新)的子篇。 文献管理相关 研究生的生活往往是在高...

  • 相关文献研究

    author:明天依旧可好email:mtyjkh@outlook.comtime:2018-11 论文一 把英汉...

  • limma相关文献

    淡水鱼写于2020/2/20 当想一次性收集到某个R包相关的文献,可以从其user's guide中会给出什么情况...

  • 查找文献相关

    本文内容出自和好友的聊天的部分记录 a. 知道每篇文献的名称,数量较少:--如果登录的是学校网络,则可以直接百度学...

网友评论

      本文标题:DeepLab相关文献

      本文链接:https://www.haomeiwen.com/subject/luwwkftx.html