语义分割--LinkNet: Exploiting Encoder Representations for Efficient Semantic Segmentation

来源:互联网 发布:要启用windows aero 编辑:程序博客网 时间:2024/06/06 02:50

LinkNet: Exploiting Encoder Representations for Efficient Semantic Segmentation

https://arxiv.org/abs/1707.03718

Torch7 code: https://github.com/e-lab/LinkNet

本文主要侧重语义分割的速度问题,算法思路类似 U-Net,引入了 residual blocks

LinkNet Architecture
这里写图片描述
conv means convolution 和 full-conv means full convolution
/2 denotes downsampling by a factor of 2 which is achieved by performing strided convolution 降采样2倍
∗2 means upsampling by a factor of 2 上采样2倍

输入图像首先使用一个 7*7的卷积核卷积,再用一个 步长为2的 3*3 spatial max-pooling

encoder-block 如下:
这里写图片描述

decoder-block 如下:
这里写图片描述

各个模块特征图数量:
这里写图片描述

首先来看看速度如何:
这里写图片描述
模型大小和运算量:
这里写图片描述

再来看看性能
这里写图片描述
这里写图片描述

这里写图片描述

阅读全文
0 0
原创粉丝点击