UNet++ is a new versatile image segmentation architecture designed to improve image segmentation accuracy. UNet++ consists of U-Nets of varying depths, with decoders densely linked at the same resolution via revised skip routes.

By including Dense block and convolution layers between the encoder and decoder, it increases image segmentation accuracy

UNet++ architecture proposed by Zhou et al.

UNet++ starts with an encoder sub-network or backbone and then continues on to a decoder sub-network. The re-designed skip pathways (shown in green and blue) that connect the two sub-networks, as well as the use of deep supervision (shown red), separate UNet++ from UNet (black components).

The main goal of introducing redesigned skip pathways is to bridge the semantic gap between the feature maps of the encoder and decoder subpaths. The hypothesis is that the optimizer would face an easier optimization problem when the received encoder feature maps and the corresponding decoder feature maps are semantically similar.

Deep supervision was introduced to the model so that it could decide the level of model pruning and speed gain.
This enabled the model to operate in two modes: 1) accurate mode wherein the outputs from all segmentation branches are averaged; 2) fast mode wherein the final segmentation map is selected from only one of the segmentation branches.

Thus UNet++ improves extracted feature processing by using densely connected nested decoder sub-networks, thus surpassing the U-Net's performance in medical image segmentation tasks.

In Model Playground, we can select feature extraction (encoding) network to use as either ResNet or EffiecientNet. The depth of the ResNet model/ EfficientNet sub type has to be specified as well.

After selecting the desired encoder network, the weights to be used for model initialization can be chosen.

Below the U-Net, wide U-Net, and UNet++ are compared showing segmentation results for polyp, liver, and cell nuclei datasets.

UNet++: A Nested U-Net Architecture for Medical Image Segmentation

Wiki entry for DeepLabv3+

Wiki entry for U-Net+

Accelerated Annotation.
Maximize model performance quickly with AI-powered labeling and 100% QA.

Learn more
Last modified