amid
收藏资源简介:
AMID(Awesome Medical Imaging Datasets)是一个精选的医学影像数据集合集,提供统一的数据访问接口。该合集收录了多个公开医学影像数据集,涵盖腹部、胸部、头部等身体区域,涉及CT、MRI、X射线等多种成像模态。合集以表格形式列出数据集名称、条目数量、身体区域和模态,并支持通过Python库直接加载和使用数据。
AMID (Awesome Medical Imaging Datasets) is a curated collection of medical imaging datasets that provides a unified data access interface. This collection incorporates multiple publicly available medical imaging datasets, spanning anatomical regions such as the abdomen, chest, and head, and covering diverse imaging modalities including CT, MRI, X-ray and others. It lists dataset names, sample counts, covered anatomical regions and utilized imaging modalities in a tabular format, and supports direct data loading and usage via the Python library.
Awesome Medical Imaging Datasets (AMID) 数据集详情
AMID 是一个精选的医学影像数据集目录,提供统一的接口来访问和管理这些数据集。
核心功能
- 统一接口:用户无需关注不同数据集的原始格式,通过 AMID 提供的 API 即可加载图像、掩膜等数据。
- 快速上手:安装后通过几行 Python 代码即可使用数据集。
- 手动下载:部分数据集需用户手动下载原始数据文件。
编程接口示例
python from amid.verse import VerSe
ds = VerSe(root=/path/to/raw/data) print(len(ds.ids)) # 获取可用ID数量 i = ds.ids[0] # 获取第一个ID x, y = ds.image(i), ds.masks(i) # 加载图像和掩膜 entry = ds(i) # 获取包含所有数据的命名元组
可用数据集列表
| 数据集名称 | 条目数 | 身体部位 | 模态 |
|---|---|---|---|
| AMOS | 2465 | 腹部 | CT, MRI |
| BIMCVCovid19 | 16364 | 胸部 | CT |
| BraTS2021 | 5880 | 头部 | MRI T1, MRI T1Gd, MRI T2, MRI T2-FLAIR |
| CC359 | 359 | 头部 | MRI T1 |
| CLDetection2023 | 400 | 头部 | X-ray |
| CRLM | 197 | 腹部 | CT, SEG |
| CT_ICH | 75 | 头部 | CT |
| CURVAS | 90 | 腹部 | CT |
| CrossMoDA | 484 | 头部 | MRI T1c, MRI T2hr |
| DeepLesion | 20094 | 腹部, 胸部 | CT |
| EGD | 3096 | 头部 | FLAIR, MRI T1, MRI T1GD, MRI T2 |
| FLARE2022 | 2100 | 腹部 | CT |
| HCP | 1113 | 头部 | MRI |
| KiTS23 | 489 | 胸部 | CT |
| LIDC | 1018 | 胸部 | CT |
| LiTS | 201 | 腹部 | CT |
| LiverMedseg | 50 | 胸部, 腹部 | CT |
| MIDRC | 229 | 胸部 | CT |
| MOOD | 1358 | 头部, 腹部 | MRI, CT |
| MSD | 2628 | 胸部, 腹部, 头部 | CT, CE CT, MRI, MRI FLAIR, MRI T1w, MRI t1gd, MRI T2w, MRI T2, MRI ADC |
| MSLUB | 70 | 头部 | MRI |
| Medseg9 | 9 | 胸部 | CT |
| MoscowCancer500 | 979 | 胸部 | CT |
| MoscowCovid1110 | 1110 | 胸部 | CT |
| NLST | 26254 | 胸部 | CT |
| NSCLC | 422 | 胸部 | CT |
| RSNABreastCancer | 54710 | 胸部 | MG |
| RibFrac | 660 | 胸部 | CT |
| StanfordCoCa | 1000 | 冠状动脉, 胸部 | CT |
| TBAD | 100 | 胸部 | CT |
| Totalsegmentator | 1204 | 头部, 胸部, 腹部, 骨盆, 腿部 | CT |
| UPENN_GBM | 671 | 头部 | FLAIR, MRI T1, MRI T1GD, MRI T2, DSC MRI, DTI MRI |
| VSSEG | 484 | 头部 | MRI T1c, MRI T2 |
| VerSe | 374 | 胸部, 腹部 | CT |
安装方式
通过 PyPi 安装: shell pip install amid
更多信息




