Dataset Preview
Duplicate
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
Job has been terminated due to a temporary spike in resource usage and may be restarted later.
Error code:   JobManagerCrashedError

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

main
array 2D
[[172,183,220,169,214,203,202,184,221,164,189,207,169,174,185,162,157,212,182,195,211,180,210,192,22(...TRUNCATED)
[[169,181,180,185,172,189,196,171,184,182,136,161,152,174,209,166,204,214,200,188,200,166,214,230,20(...TRUNCATED)
[[213,182,163,185,173,176,194,151,145,139,137,172,174,196,189,178,232,174,190,174,192,193,146,202,21(...TRUNCATED)
[[118,157,218,208,207,195,201,200,222,225,223,227,222,214,219,205,189,232,211,196,202,193,187,192,18(...TRUNCATED)
[[198,202,204,169,211,163,157,174,158,213,186,214,194,168,176,181,198,153,205,171,185,198,199,190,21(...TRUNCATED)
[[159,165,163,189,235,237,235,215,216,232,224,213,203,206,193,177,147,134,123,117,124,145,88,116,115(...TRUNCATED)
[[153,114,169,149,130,111,131,100,117,138,164,154,171,149,199,175,165,106,142,160,156,149,130,115,14(...TRUNCATED)
[[207,213,212,212,204,210,219,221,213,231,228,222,228,220,234,220,211,213,225,230,220,218,200,215,21(...TRUNCATED)
[[104,98,100,148,147,185,161,160,204,239,197,224,213,195,237,208,206,215,195,159,190,204,195,189,169(...TRUNCATED)
[[92,71,64,60,54,56,59,61,102,118,174,193,171,189,218,158,193,179,166,130,165,192,181,203,191,185,18(...TRUNCATED)
End of preview.

AxonEM Dataset

Large-scale 3D Axon Instance Segmentation of Brain Cortical Regions from serial section Electron Microscopy (sEM).

Dataset Description

AxonEM contains high-resolution electron microscopy volumes of mouse and human brain cortex tissue for axon instance segmentation.

Subsets

Subset Species Volumes Resolution Original Size
Human Homo sapiens 9 30×8×8 nm 1000×4096×4096
Mouse Mus musculus 9 40×8×8 nm 750×4096×4096

Volume Information

Each training sub-volume has shape (90, 1536, 1536) voxels with padding:

  • Padding: 20 slices in Z, 512 pixels in Y/X (on each side)
  • Annotated region: (50, 512, 512) after removing padding

File Structure

AxonEM/
├── EM30-H-train-9vol-pad-20-512-512/    # Human subset
│   ├── im_0-0-0_pad.h5                   # Image volume
│   ├── seg_0-0-0_pad.h5                  # Segmentation (instance labels)
│   └── ...
├── EM30-M-train-9vol-pad-20-512-512/    # Mouse subset
│   ├── im_0-0-0_pad.h5
│   ├── seg_0-0-0_pad.h5
│   ├── valid_mask.h5                     # Valid annotation mask
│   └── ...
└── README.md

HDF5 Format

Each .h5 file contains a single dataset with key 'main':

  • Image files (im_*.h5): uint8 grayscale EM images, shape (90, 1536, 1536)
  • Segmentation files (seg_*.h5): uint8 instance labels, shape (90, 1536, 1536)
    • 0 = background
    • 1-N = axon instance IDs

Loading Example

import h5py
import numpy as np

# Load a volume
with h5py.File('EM30-H-train-9vol-pad-20-512-512/im_0-0-0_pad.h5', 'r') as f:
    image = f['main'][:]  # (90, 1536, 1536) uint8

with h5py.File('EM30-H-train-9vol-pad-20-512-512/seg_0-0-0_pad.h5', 'r') as f:
    labels = f['main'][:]  # (90, 1536, 1536) uint8

# Convert to binary mask (axon vs background)
binary_mask = (labels > 0).astype(np.uint8)

# Remove padding to get annotated region
z_pad, y_pad, x_pad = 20, 512, 512
image_cropped = image[z_pad:-z_pad, y_pad:-y_pad, x_pad:-x_pad]  # (50, 512, 512)

Using with EasyMedSeg

from dataloader.axonem import AxonEMImageDataset, AxonEMVideoDataset

# Image mode (2D slices)
dataset = AxonEMImageDataset(
    hf_repo_id="Angelou0516/AxonEM",
    subset="human",  # or "mouse"
)

# Video mode (3D volumes)
dataset = AxonEMVideoDataset(
    hf_repo_id="Angelou0516/AxonEM",
    subset="human",
)

Citation

@inproceedings{wei2021miccai,
  title={AxonEM Dataset: 3D Axon Instance Segmentation of Brain Cortical Regions},
  author={Wei, Donglai and Xu, Kisuk and Liao, Ran and Pfister, Hanspeter and 
          Haehn, Daniel and Bhanu, Shubham and Bhattacharyya, Chandrajit},
  booktitle={International Conference on Medical Image Computing and 
             Computer-Assisted Intervention (MICCAI)},
  year={2021}
}

Links

License

This dataset is released under CC BY 4.0.

Downloads last month
110

Paper for MedOtter/AxonEM