-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP(convert tool to transform)-135 add DICOM loader #141
Conversation
I don't recommend creating dependencies on SimpleITK. Consider using the full ITK - pip install itk |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See comments regarding SITK versus ITK.
ITK provides pipelining (data streaming, parallelism, etc), meshes, the ability to explicit specify template parameters of a filter, interfaces with numpy, and access to remote modules - ITK is the way to go.
You may also want to consider ITKWidgets for image, mesh, ... visualization in jupyter notebooks/labs:
https://github.com/InsightSoftwareConsortium/itkwidgets
2679855
to
6a496c4
Compare
Hi All, I updated the code to be compatible with master. |
i think we need to have a loader wrapped as a transform, to show the idea that monai doesn't implement its own but build wrapper around external packages for this type of IO tasks. provide a CLI script is not proper integration... as a starting point let's use pydicom |
any update on this WIP? Any thoughts on adding support for dicom-RT. Being able to load RT-struct files would greatly assist utilizing MONAI for radiotherapy applications. |
Hi @zsdqui , Thanks for your suggestion. |
this is out-of-date and becomes really confusing, I'm closing it now (the branch will be retained) |
Fixes #135 .
Description
This PR implemented a medical image format converter.
Convert medical image formats with option to resample image.
Supported input formats: .dcm, .nii, .nii.gz, .mha, .mhd.
Supported output formats: .nii, .nii.gz, .mha, .mhd.
Status
Ready
Types of changes