UNet 3+: A Full-Scale Connected UNet for Medical Image Segmentation
Huimin HuangLanfen LinRuofeng TongHongjie HuQiaowei ZhangYutaro IwamotoXianhua HanYen-Wei ChenJian Wu
Introduces UNet 3+, a medical image segmentation architecture that combines full-scale skip connections with deep supervision to capture multi-scale anatomical structures with higher accuracy and fewer parameters than previous UNet variants.
Medical image segmentation is essential for clinical tasks such as organ analysis in CT scans, yet existing networks like UNet and UNet++ often fail to fully exploit multi-scale features, leading to imprecise boundaries and over-segmentation on non-organ images. These shortcomings matter now because accurate automated segmentation can improve diagnostic efficiency and treatment planning amid growing imaging volumes.
The article set out to develop and evaluate UNet 3+, a redesigned encoder-decoder network that incorporates full-scale skip connections, deep supervision, a hybrid loss function, and a classification-guided module to achieve higher accuracy with fewer parameters.
The approach involved redesigning skip connections to aggregate features across all scales and adding side outputs supervised by a combination of focal, MS-SSIM, and IoU losses, plus a binary classification branch to suppress false positives. Experiments used the ISBI LiTS 2017 liver dataset of 131 CT volumes and a spleen dataset of 49 CT volumes from a hospital, with performance measured by Dice coefficient against UNet, UNet++, and other state-of-the-art methods.
UNet 3+ reduced parameters substantially compared with prior U-Net variants while raising average Dice scores by 2.7 to 3.4 points over UNet and UNet++ across both backbones and datasets. Adding full-scale deep supervision contributed an extra 0.4-point gain, and the hybrid loss plus classification module further lifted liver Dice to 0.9675 and spleen Dice to 0.9620, outperforming the next-best published results by roughly 3 points. Qualitative results showed clearer organ boundaries and fewer false positives even for small or variably scaled structures.
These gains translate to more reliable position-aware and boundary-enhanced maps that can reduce manual correction time and lower risks of missed or erroneous delineations in clinical workflows. The efficiency improvement also supports deployment on standard hardware without sacrificing accuracy.
The findings support integrating UNet 3+ into segmentation pipelines for abdominal CT, with immediate next steps being broader validation across additional organs and modalities plus pilot deployment in clinical settings. Main limitations include evaluation on only two organs and two datasets; readers should confirm generalizability before large-scale adoption.
- Paper: U-Net: Convolutional Networks for Biomedical Image Segmentation, Olaf Ronneberger et al. (2015). This paper establishes the classic U-Net encoder-decoder architecture with skip connections that UNet 3+ directly builds upon and enhances.
- Paper: UNet++: A Nested U-Net Architecture for Medical Image Segmentation, Zongwei Zhou et al. (2018). This work introduces nested and dense skip connections alongside deep supervision, providing the core benchmark and architectural predecessor that UNet 3+ redesigns to full-scale connections.
- Paper: UNet++: Redesigning Skip Connections to Exploit Multiscale Features in Image Segmentation, Zongwei Zhou et al. (2019). This paper expands multiscale feature aggregation and pruning in UNet++, detailing the dense skip pathways that UNet 3+ seeks to simplify and improve.
- Paper: Attention U-Net: Learning Where to Look for the Pancreas, Ozan Oktay et al. (2018). This study introduces attention mechanisms into U-Net skip pathways to eliminate false positives in organ segmentation, motivating UNet 3+'s classification-guided module.
- Paper: V-Net: Fully Convolutional Neural Networks for Volumetric Medical Image Segmentation, Fausto Milletari et al. (2016). This paper establishes end-to-end volumetric segmentation and the Dice-based objective function foundational to the hybrid loss strategies used in UNet 3+.
- Paper: Fully convolutional networks for semantic segmentation, Jonathan Long et al. (2015). This seminal paper introduces fully convolutional architectures and multiscale feature fusion via skip layers, underpinning all modern encoder-decoder segmentation networks.
- Paper: Swin-Unet: Unet-like Pure Transformer for Medical Image Segmentation, Hu Cao et al. (2021). This paper extends U-shaped medical segmentation by replacing convolutional feature extractors with pure Swin Transformer blocks to capture long-range contextual dependencies.
- Paper: UNETR: Transformers for 3D Medical Image Segmentation, Ali Hatamizadeh et al. (2021). This work advances beyond convolutional multiscale skip architectures by formulating 3D medical image segmentation with a vision transformer encoder connected to a CNN decoder.
- Paper: Swin UNETR: Swin Transformers for Semantic Segmentation of Brain Tumors in MRI Images, Ali Hatamizadeh et al. (2022). This paper builds on transformer-augmented multiscale decoders by integrating shifted-window hierarchical self-attention for complex volumetric medical segmentation tasks.
- Paper: U-KAN Makes Strong Backbone for Medical Image Segmentation and Generation, Chenxin Li et al. (2025). This study pushes the evolution of U-Net architectures further by substituting linear layers with Kolmogorov-Arnold Network blocks to enhance nonlinear representation and parameter efficiency.
