Stacked fully convolutional networks with multi-channel learning: application to medical image segmentation
https://link.springer.com/article/10.1007/s00371-017-1379-4
本文将 FCN 用于医学图像分割,但是直接将FCN用于医学图像分割存在问题:分割结果比较粗糙,边缘分割效果差,是由训练数据太少以及 缺少邻域一致性约束造成。
FCNs usually produce coarse ROI detection and poor boundary definitions primarily due to the limited number of labeled training data and limited constraints of label agreement among neighboring similar pixels
这里我们采用了多个 FCN 来提升性能。先用一个 FCN 得到 foreground 和 background probability map,然后针对 foreground 和 background 分别采用一个 FCN 来进行分割,最后将两个结果结合起来得到最终的分割结果。
首先来看看医学图像分割示例:
(a)是胸透片 chest radiograph (b) B 超 ultrasound (US) image (c)细胞切片图像 histological image
Stacked fully convolutional networks 网络结构:
实验结果:
与 FCN相比 提升 1%-2%
总体感觉提升不是很大啊,没有开源,思路很简单!

本文探讨了使用堆叠全卷积网络(Stacked FCN)进行医学图像分割的方法,通过引入多通道学习机制来提高分割精度。文章提出了一种改进方案,即利用多个FCN网络分别处理前景和背景,最终融合结果以获得更精细的边界定义。
2395

被折叠的 条评论
为什么被折叠?



