您的位置:首页 > 其它

语义分割-- SegNet:A Deep Convolutional Encoder-Decoder Architecture for Image Segmentation

2017-05-26 14:25 761 查看
SegNet: A Deep Convolutional Encoder-Decoder Architecture for Image Segmentation

PAMI 2017

http://mi.eng.cam.ac.uk/projects/segnet/

下载下面两个代码合到一起

https://github.com/alexgkendall/SegNet-Tutorial

https://github.com/alexgkendall/caffe-segnet

SegNet has an encoder network and a corresponding decoder network, followed by a final pixelwise classification layer.

SegNet 有三个部分构成:一个 encoder network,一个对应的 decoder network,最后一个像素级别的分类层

本文最大的亮点在: 在 encoder 阶段我们做 max-pooling时,我们将 pooling indices 记录下来,在decoder upsamples 使用这些 pooling indices 得到稀疏的 upsampled maps,再用 trainable filters 进行卷积得到 dense feature maps。

和 DeconvNet 类似。







系统结构示意图:



SegNet 和 FCN decoder 方式对比







看分割算法,主要看人家是怎么做 decoder low resolution feature map 即怎么放大特征图
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐