Conference Paper
Machine Learning
Featured

Fully Convolutional Networks for Semantic Segmentation

Evan Shelhamer(University of California, Berkeley), Jonathan Long(University of California, Berkeley), Trevor Darrell(University of California, Berkeley)
May 24, 2016IEEE Transactions on Pattern Analysis and Machine Intelligence11,140 citations

11k

Citations

103

Influential Citations

IEEE Transactions on Pattern Analysis and Machine Intelligence

Venue

2016

Year

Abstract

Convolutional networks are powerful visual models that yield hierarchies of features. We show that convolutional networks by themselves, trained end-to-end, pixels-to-pixels, improve on the previous best result in semantic segmentation. Our key insight is to build "fully convolutional" networks that take input of arbitrary size and produce correspondingly-sized output with efficient inference and learning. We define and detail the space of fully convolutional networks, explain their application to spatially dense prediction tasks, and draw connections to prior models. We adapt contemporary classification networks (AlexNet, the VGG net, and GoogLeNet) into fully convolutional networks and transfer their learned representations by fine-tuning to the segmentation task. We then define a skip architecture that combines semantic information from a deep, coarse layer with appearance information from a shallow, fine layer to produce accurate and detailed segmentations. Our fully convolutional networks achieve improved segmentation of PASCAL VOC (30% relative improvement to 67.2% mean IU on 2012), NYUDv2, SIFT Flow, and PASCAL-Context, while inference takes one tenth of a second for a typical image.

Analysis

Why This Paper Matters

This paper is a landmark in computer vision, demonstrating that convolutional networks can be repurposed end-to-end for semantic segmentation without the need for complex post-processing or patch-based training. By rethinking the architecture of classification nets, the authors showed that fully convolutional designs can handle arbitrary input sizes and produce dense pixel-level outputs efficiently. This insight directly addressed a key limitation of prior methods that relied on sliding windows or region proposals, which were computationally expensive and often suboptimal.

The significance extends beyond segmentation: the fully convolutional paradigm influenced a generation of dense prediction models, including object detection (e.g., YOLO, SSD), depth estimation, and optical flow. The paper also popularized the idea of transfer learning from classification to segmentation via fine-tuning, making it practical to leverage large pre-trained models. Its clear exposition and strong empirical results made it a must-read for practitioners.

Technical Contributions

  • Fully convolutional architecture: Replacing fully connected layers with 1x1 convolutions and adding upsampling layers (deconvolution) to produce dense outputs.
  • Arbitrary input size: The network can process images of any dimensions, enabling efficient inference on varied resolutions.
  • Skip architecture: Combines predictions from deep coarse layers (semantic) with shallow fine layers (appearance) via element-wise addition, improving boundary detail.
  • Transfer learning: Fine-tuning classification nets (AlexNet, VGG, GoogLeNet) for segmentation, demonstrating that learned features generalize well.
  • End-to-end training: Pixelwise loss and backpropagation through the entire network, simplifying the training pipeline.

Results

On PASCAL VOC 2012, the FCN achieved 67.2% mean IU, a 30% relative improvement over the previous best (62.2%). On NYUDv2, it reached 34.0% mean IU; on SIFT Flow, 85.7% pixel accuracy; and on PASCAL-Context, 37.8% mean IU. Inference time was 0.1 seconds per image on a GPU, enabling near real-time segmentation. The skip architecture (FCN-8s) outperformed single-stream versions (FCN-32s, FCN-16s) by refining output resolution.

Significance

This paper democratized semantic segmentation by providing a simple, effective, and open-source framework. It inspired subsequent architectures like U-Net (biomedical segmentation), DeepLab (atrous convolutions), and Mask R-CNN (instance segmentation). The concept of fully convolutional networks is now a standard building block in many vision systems. The work also highlighted the importance of end-to-end learning and transfer learning, influencing how practitioners approach dense prediction tasks. Its impact is reflected in over 11,000 citations and widespread adoption in industry and academia.