Unet-Paper List
Unet-Paper List
1.Paper List
- U-Net: Convolutional Networks for Biomedical Image Segmentation
- UNet++: A Nested U-Net Architecture for Medical Image Segmentation
- MDU-Net: Multi-scale Densely Connected U-Net for biomedical image segmentation
- RA-UNet: A hybrid deep attention-aware network to extract liver and tumor in CT scans
- Dense Multi-path U-Net for Ischemic Stroke Lesion Segmentation in Multiple Image Modalities
- Stacked Dense U-Nets with Dual Transformers for Robust Face Alignment
- Prostate Segmentation using 2D Bridged U-net
- nnU-Net: Self-adapting Framework for U-Net-Based Medical Image Segmentation
- SUNet: a deep learning architecture for acute stroke lesion segmentation and
outcome prediction in multimodal MRI - IVD-Net: Intervertebral disc localization and segmentation in MRI with a multi-modal UNet
- LADDERNET: Multi-Path Networks Based on U-Net for Medical Image Segmentation
- Glioma Segmentation with Cascaded Unet
- H-DenseUNet: Hybrid Densely Connected UNet for Liver and Tumor Segmentation from CT Volumes
- Attention U-Net: Learning Where to Look for the Pancreas
- Recurrent Residual Convolutional Neural Network based on U-Net (R2U-Net) for Medical Image Segmentation
Introduction
Since 2015, UNet has made major breakthroughs in the medical image segmentation , opening the era of deep learning. Later researchers have made a lot of improvements on the basis of UNet in order to improve the performance of semantic segmentation.
In this project, we have compiled the semantic segmentation models related to UNet(UNet family) in recent years.
My implementation is mainly based on pytorch, and other implementations are collected from author of original paper or excellent repositories. For the record, this project is still under construction. If you have any advice or question, please raise an issue or contact me from email.
Furthermore, why does the UNet neural network perform well in medical image segmentation?
You can figure it out from my answer in Zhihu.
UNet-family
2015
2016
- V-Net: Fully Convolutional Neural Networks for Volumetric Medical Image Segmentation [paper] [caffe]
2017
- H-DenseUNet: Hybrid Densely Connected UNet for Liver and Tumor Segmentation from CT Volumes (IEEE Transactions on Medical Imaging)[paper]
2018
- UNet++: A Nested U-Net Architecture for Medical Image Segmentation (MICCAI) [paper][pytorch][keras]
- MDU-Net: Multi-scale Densely Connected U-Net for biomedical image segmentation [paper]
- DUNet: A deformable network for retinal vessel segmentation [paper]
- RA-UNet: A hybrid deep attention-aware network to extract liver and tumor in CT scans [paper]
- Dense Multi-path U-Net for Ischemic Stroke Lesion Segmentation in Multiple Image Modalities [paper]
- Stacked Dense U-Nets with Dual Transformers for Robust Face Alignment [paper]
- Prostate Segmentation using 2D Bridged U-net [paper]
- nnU-Net: Self-adapting Framework for U-Net-Based Medical Image Segmentation [paper]
- SUNet: a deep learning architecture for acute stroke lesion segmentation and
outcome prediction in multimodal MRI [paper] - IVD-Net: Intervertebral disc localization and segmentation in MRI with a multi-modal UNet [paper]
- LADDERNET: Multi-Path Networks Based on U-Net for Medical Image Segmentation [paper]
- Glioma Segmentation with Cascaded Unet [paper]
- Attention U-Net: Learning Where to Look for the Pancreas [paper]
- Recurrent Residual Convolutional Neural Network based on U-Net (R2U-Net) for Medical Image Segmentation [paper]
- Concurrent Spatial and Channel ‘Squeeze & Excitation’ in Fully Convolutional Networks [paper]
- A Probabilistic U-Net for Segmentation of Ambiguous Images (NIPS) [paper] [tensorflow]
- AnatomyNet: Deep Learning for Fast and Fully Automated Whole-volume Segmentation of Head and Neck Anatomy [paper]
2019
- MultiResUNet : Rethinking the U-Net Architecture for Multimodal Biomedical Image Segmentation [paper]
Reference
- https://github.com/ozan-oktay/Attention-Gated-Networks (Our model style mainly refers to this repository.)