Source-linked AI summary

FusionNet: A deep fully residual convolutional neural network for image segmentation in connectomics

Tran Minh Quan, David G. C. Hildebrand, Won-Ki Jeong

arXiv:1612.05360v2cs.CV

TL;DR

Connectomics requires scalable, minimally interactive analysis of high-throughput EM data. The paper introduces FusionNet, a fully residual extension of U-net using summation-based skip connections, and reports competitive segmentation performance across membrane- and blob-type tasks, including outperformance of state-of-the-art methods on several standard quality metrics.

  • Problem

    Connectomics needs scalable automatic image-analysis algorithms with minimal user intervention for studying comprehensive brain connectivity from high-throughput EM data.

  • Method

    FusionNet extends U-net and residual CNNs with residual layers and summation-based skip connections for deeper end-to-end automatic EM image segmentation.

  • Results

    FusionNet outperformed state-of-the-art methods in several standard quality metrics across membrane- and blob-type EM segmentation tasks.

  • Takeaways & Limitations

    FusionNet demonstrates flexible connectomics segmentation across cell-membrane and cell-nucleus EM tasks without complicated post-processing enhancement.

  • Takeaways & Limitations

    The authors identify the need for deeper architectural analysis and further development of extremely deep and distributed FusionNet systems.

Abstract

from arXiv · show

Electron microscopic connectomics is an ambitious research direction with the goal of studying comprehensive brain connectivity maps by using high-throughput, nano-scale microscopy. One of the main challenges in connectomics research is developing scalable image analysis algorithms that require minimal user intervention. Recently, deep learning has drawn much attention in computer vision because of its exceptional performance in image classification tasks. For this reason, its application to connectomic analyses holds great promise, as well. In this paper, we introduce a novel deep neural network architecture, FusionNet, for the automatic segmentation of neuronal structures in connectomics data. FusionNet leverages the latest advances in machine learning, such as semantic segmentation and residual neural networks, with the novel introduction of summation-based skip connections to allow a much deeper network architecture for a more accurate segmentation. We demonstrate the performance of the proposed method by comparing it with state-of-the-art electron microscopy (EM) segmentation methods from the ISBI EM segmentation challenge. We also show the segmentation results on two different tasks including cell membrane and cell body segmentation and a statistical analysis of cell morphology.

1. Introduction

Connectomics needs scalable, minimally interactive analysis for massive EM datasets, motivating FusionNet, a deeper residual extension of U-net for automatic segmentation. The method is evaluated across EM segmentation tasks and against established challenge methods.

  • Connectomics seeks to relate brain structure and function, but scalable automatic image analysis remains an important research direction.
  • Deep-learning EM segmentation has commonly used patch-based CNNs for affinity maps or cell-membrane probabilities, but conventional CNN deployment can be expensive.
  • FusionNet extends U-net with residual layers and summation-based skip connections, forming a fully residual deep CNN designed for deeper, more accurate end-to-end segmentation.
  • FusionNet outperformed most top-ranked ISBI 2012 EM segmentation methods in segmentation accuracy without complicated post-processing enhancement.
  • Eight orientation variants are used for data enrichment and deployment, combining eight probability outputs to increase segmentation accuracy.
  • The method is evaluated on cell-membrane segmentation in Drosophila EM data and cell-nucleus segmentation in whole-brain larval zebrafish EM data.

2. Related work

Related work established deep-learning approaches for semantic segmentation and highlighted depth limitations in U-net-like architectures. Residual and shortcut connections motivated a fully residual CNN for connectomic image analysis.

  • Deep learning has gained attention because it has surpassed human-level performance on many complex problems.
  • Fully convolutional networks and their variants address end-to-end semantic segmentation, including EM segmentation with multi-level upscaling and post-processing refinement.
  • U-net concatenates feature maps through skip connections and learns multi-contextual information, but network depth is limited by vanishing gradients.
  • Shortcut connections and direction summations allow gradients to flow across multiple layers during training, inspiring a fully residual convolutional network for connectomic data.

3. Method

The proposed network uses a symmetric encoding–decoding architecture with residual blocks and summation-based skip connections within and across levels. Training combines paired-image supervision with orientation enrichment, elastic deformation, noise, padding, and transformed deployment.

  • Network architecture: The network uses an encoding path from 640×640 to 40×40 and a symmetric decoding path returning to 640×640 across multiple resolutions.Encoding extracts features through downsampling, while decoding predicts through learnable upsampling.
  • Network architecture: Each residual block contains convolutional layers and a residual skip connection, while long and short nested skips connect features within and across network levels.The architecture uses residual connections inside paths and nested connections between encoding and decoding paths.
  • Network architecture: Unlike U-net’s concatenation, the proposed network merges same-level encoder and decoder feature maps by pixel-wise addition, forming a fully residual network.The authors state that this design helps address gradient vanishing and supports deeper networks.
  • Training: Training uses EM images paired with manual labels, mean-square-error loss, and back-propagation to adjust network weights before test deployment.Deployment begins after training reaches relatively small loss values.
  • Data augmentation: Rotations and reflections create eight orientation variants, increasing the input data size eightfold before training.The transformations include rotations of 90°, 180°, and 270° plus reflections.
  • Data augmentation: Elastic deformation warps each enriched image-label pair using a randomly generated interpolated sparse vector field during every training epoch.The procedure is intended to help avoid overfitting from small training datasets.

4. Results

FusionNet was evaluated on Drosophila and larval zebrafish EM datasets for membrane- and cell-body-type segmentation. It achieved strong segmentation performance and supported large-scale morphological analysis.

  • 4.1. Drosophila EM data: The Drosophila dataset came from the ISBI two-dimensional EM segmentation challenge and contained anisotropic 4×4×50 nm^3 voxel resolution.The data included noise and small alignment errors typical of serial-section EM.
  • 4.1. Drosophila EM data: FusionNet outperformed other state-of-the-art methods on several standard segmentation metrics without sophisticated post-processing.The reported metrics included foreground-restricted Rand and information-theoretic scores after border thinning.
  • 4.1. Drosophila EM data: With mild 2D median filtering, FusionNet ranked among the top three methods, while the first-place method used a compute-intensive lifting multi-cut algorithm.The median filter used radius = 2px for each prediction slice.
  • 4.2. Larval Zebrafish EM data: FusionNet was deployed across 16,000 larval zebrafish sections totaling about 1.2 terabytes and identified approximately 180,000 cell bodies.Cell morphology features were clustered with K-means, and large-volume outliers could be eliminated by thresholding.
  • 4.2. Larval Zebrafish EM data: The analyzed cell-feature distributions appeared mirror symmetric across the larval zebrafish brain midline, suggesting similar organization between hemispheres.The observation concerned the distribution of morphological features and centroid coordinates.

5. Conclusion

The paper presents FusionNet as a deeper U-net and residual-CNN architecture for connectomics segmentation. Its performance and flexibility were demonstrated across membrane- and blob-type EM tasks, while deeper analysis and scaling remain future work.

  • 5. Conclusion: FusionNet extends U-net and residual CNN with summation-based skip connections to support a deeper end-to-end segmentation network.The architecture applies residual properties within and across network levels.
  • 5. Conclusion: FusionNet outperformed state-of-the-art methods across several standard quality metrics on membrane- and blob-type EM segmentation tasks.The conclusion describes these results as demonstrating both flexibility and performance.
  • 5. Conclusion: Future work includes in-depth architectural analysis, constructing extremely deep FusionNet models, and developing distributed training and deployment.These directions target improved understanding, accuracy, and cluster-based scalability.
Loading 1612.05360v2…