医学图像分割 | U-Net网络及他的变体

医学图像分割U-net链接

U-Net

论文地址:https://lmb.informatik.uni-freiburg.de/people/ronneber/u-net/
代码地址:https://github.com/wolny/pytorch-3dunet

3D U-Net

论文地址:https://arxiv.org/pdf/1606.06650.pdf
代码地址:https://github.com/wolny/pytorch-3dunet

Res-UNet 和Dense U-Net

Res-UNet和Dense-UNet分别受到残差连接和密集连接的启发,将UNet的每一个子模块分别替换为具有残差连接和密集连接的形式。

MultiResUNet

Attention UNet