Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

amid

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amid

A curated list of medical imaging datasets with unified interfaces

  • 0.14.0
  • Source
  • PyPI
  • Socket score

Maintainers
1

docs contribute pypi License

Awesome Medical Imaging Datasets (AMID) - a curated list of medical imaging datasets with unified interfaces

Getting started

Just import a dataset and start using it!

Note that for some datasets you must manually download the raw files first.

from amid.verse import VerSe


ds = VerSe(root='/path/to/raw/data')
# get the available ids
print(len(ds.ids))
i = ds.ids[0]

# use the available methods:
#   load the image and vertebrae masks
x, y = ds.image(i), ds.masks(i)
print(ds.split(i), ds.patient(i))

# or get a namedTuple-like object:
entry = ds(i)
x, y = entry.image, entry.masks
print(entry.split, entry.patient)

Available datasets

NameEntriesBody regionModality
AMOS2465AbdomenCT, MRI
BIMCVCovid1916364ChestCT
BraTS20215880HeadMRI T1, MRI T1Gd, MRI T2, MRI T2-FLAIR
CC359359HeadMRI T1
CLDetection2023400HeadX-ray
CRLM197AbdomenCT, SEG
CT_ICH75HeadCT
CURVAS90AbdomenCT
CrossMoDA484HeadMRI T1c, MRI T2hr
DeepLesion20094Abdomen, ThoraxCT
EGD3096HeadFLAIR, MRI T1, MRI T1GD, MRI T2
FLARE20222100AbdomenCT
HCP1113HeadMRI
KiTS23489thoraxCT
LIDC1018ChestCT
LiTS201AbdominalCT
LiverMedseg50Chest, AbdomenCT
MIDRC229ThoraxCT
MOOD1358Head, AbdominalMRI, CT
MSD2628Chest, Abdominal, HeadCT, CE CT, MRI, MRI FLAIR, MRI T1w, MRI t1gd, MRI T2w, MRI T2, MRI ADC
MSLUB70HeadMRI
Medseg99ChestCT
MoscowCancer500979ThoraxCT
MoscowCovid11101110ThoraxCT
NLST26254ThoraxCT
NSCLC422ThoraxCT
RSNABreastCancer54710ThoraxMG
RibFrac660ChestCT
StanfordCoCa1000Coronary, ChestCT
TBAD100ChestCT
Totalsegmentator1204Head, Thorax, Abdomen, Pelvis, LegsCT
UPENN_GBM671HeadFLAIR, MRI T1, MRI T1GD, MRI T2, DSC MRI, DTI MRI
VSSEG484HeadMRI T1c, MRI T2
VerSe374Thorax, AbdomenCT

Check out our docs for a more detailed list of available datasets and their fields.

Install

Just get it from PyPi:

pip install amid

Contribute

Check our contribution guide if you want to add a new dataset to AMID.

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc