DC-UNet: Rethinking the U-Net Architecture with Dual Channel Efficient CNN for Medical Images Segmen

1 Main Contribution

  1. Designed efficient CNN architecture to replace encoder and decoder
  2. applied residual module to replace skip connection between encoder and decoder to improve based on state-of-art U-Net model

2 Datasets

在这里插入图片描述

  • In-house IR breast dataset contains 450 infrared images from 14 patients and 16 healthy volunteers; resolution is 256*128
  • EMdataset is 2D EM(电子显微镜图像,公有):contains 30 images in its training set from a serial section Transmission Electron Microscopy (ssTEM) of the Drosophila(果蝇幼虫EM图像), resolution is 256*256; Use 5-Fold cross-validation
  • Endoscopy images(内窥镜图像 公有): CVC-ClinicDB dataset extracte from the colonoscopy(结肠镜检查), contains total 612 images; resolution is 128*96

3 Data Augment

  1. convert 16-bit to 8-bit and resize 256*128 for thermography breast database
  2. resize 256*256 for other databases

4 Initialization

  1. All convolutional layers are activated by ReLU
  2. Each ReLU later use batch normalization
  3. Final output layer activated by Sigmoid
  4. Use binary cross-entropy as loss function
  5. Use Adam optimizer with the parameter 𝛽1 = 0.9 and 𝛽2 = 0.999

5 Comparison Range

classical U-Net And MultiResUNet
Parameter:
在这里插入图片描述

附上一个计算模型参数量的代码:

def count_parameters(model):
    params = [p.numel() for p in model.parameters() if p.requires_grad]
    for item in params:
        print(f'{item:>8}')
    print(f'________\n{sum(params):>8}')

样例结果:
在这里插入图片描述

6 Measurement metric

JS(Jaccard similarity), MAE, Tanimoto similarity and SSIM

In conclusion, Jaccard similarity is a proper measure if segmentation output is binary but for grayscale images, Tanimoto similarity is better.

7 Results of Comparison

7.1Results of infrared breast images

  • epoch:50
    Results:
    在这里插入图片描述

Because the dataset contains 14 patients and 16 healthy volunteers, the model train dataset in each person respectively

7.2 Results of electron microscopy image

  • Use 5-Fold-validation
  • epoch: 50
    Results:
    在这里插入图片描述

7.3 Results of endoscopy image

  • Use 5-Fold cross-validation
  • Epoch: 150
    Results:
    在这里插入图片描述

8 Conclusion

  1. it replace the ResBlock in MultiResUNet with DcBlock, which is a two-channel continuous convolutional manipulation.
  2. At the same time,it is tested on three datasets with the other models classical UNet and MultiResUNet, and finally DcUNet has the best performance.

9 Core Ways

  1. Introduce the classical UNet and MultiResUNet‘s structure
  2. List a specific number of channels
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Philo`

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值