--- license: cc-by-4.0 task_categories: - image-segmentation tags: - medical-imaging - electron-microscopy - neuroscience - axon-segmentation - 3d-segmentation - connectomics size_categories: - 1K 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 ```python 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 ```bibtex @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 - [Grand Challenge](https://axonem.grand-challenge.org/) - [arXiv Paper](https://arxiv.org/abs/2107.05451) - [PyTorch Connectomics](https://github.com/zudi-lin/pytorch_connectomics) ## License This dataset is released under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/).