Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 2.09 KB

deeplab_understanding.md

File metadata and controls

32 lines (25 loc) · 2.09 KB

DeepLab语义分割系列

DeepLab系列是针对Semantic Segmentation任务提出的一系列模型,主要使用了DCNN、CRF、空洞卷积做密集预测。重点讨论了空洞卷积的使用,并提出的获取多尺度信息的ASPP模块,在多个数据集上获得了state-of-the-art 表现。

引用自语义分割论文-DeepLab系列

该系列文章主要包括如下:

  • DeepLab v1,Semantic image segmentation with deep convolutional nets and fully connected CRFs
  • DeepLab v2,DeepLab: Semantic Image Segmentation with Deep Convolutional Nets, Atrous Convolution, and Fully Connected CRFs
  • DeepLab v3,Rethinking Atrous Convolution for Semantic Image Segmentation
  • DeepLab v3+,Encoder-Decoder with Atrous Separable Convolution for Semantic Image Segmentation

DeepLab v1


DeepLab v2


DeepLab v3


DeepLab v3+


相关资料