viennh2012/cardiac_cine_msd
MSD Cardiac — Task02_Heart (Left Atrium Segmentation) Processed NIfTI data from the Medical Segmentation Decathlon Task02 (Heart). The goal is to segment the left atrium from mono-modal MR images. Dataset Summary Modality: MRI Task: Left atrium segmentation Patients: 30 total (20 train, 10 test) Labels: 0 = background, 1 = left atrium Splits: train (with labels), test (images only, no public labels) Data Structure (per patient) Each patient… See the full description on the dataset page: https://huggingface.co/datasets/viennh2012/cardiac_cine_msd.
MSD Cardiac — Task02_Heart (Left Atrium Segmentation)
Processed NIfTI data from the Medical Segmentation Decathlon Task02 (Heart). The goal is to segment the left atrium from mono-modal MR images.
Dataset Summary
- Modality: MRI
- Task: Left atrium segmentation
- Patients: 30 total (20 train, 10 test)
- Labels: 0 = background, 1 = left atrium
- Splits:
train(with labels),test(images only, no public labels)
Data Structure (per patient)
Each patient directory contains:
<pid>.nii.gz— MR image volume<pid>_gt.nii.gz— segmentation mask (train only)
Columns
Resolution Details
Usage
import pandas as pd
import nibabel as nib
df = pd.read_csv("train.csv")
row = df.iloc[0]
img = nib.load(row["image"])
arr = img.get_fdata()Source
Official MSD website: http://medicaldecathlon.com/
License
CC-BY-SA 4.0
Citation
@article{antonelli2022medical,
title={The Medical Segmentation Decathlon},
author={Antonelli, Michela and Reinke, Annika and Bakas, Spyridon and others},
journal={Nature Communications},
year={2022},
doi={10.1038/s41467-022-30695-9}
}