You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-9Lines changed: 14 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,25 @@
1
1
# PyMIC: A Pytorch-Based Toolkit for Medical Image Computing
2
2
3
-
This repository proivdes a library and some examples of using pytorch for medical image computing. The toolkit is under development. Currently it supports 2D and 3D image segmentation. It was originally developped for COVID-19 pneumonia lesion segmentation from CT images. If you use this toolkit, please cite the following paper:
3
+
PyMIC is a pytorch-based toolkit for medical image computing with deep learning. Despite that pytorch is a fantastic platform for deep learning, using it for medical image computing is not straightforward as medical images are often with higher dimension, multiple modalities and low contrast. The toolkit is developed to facilitate medical image computing researchers so that training and testing deep learning models become easier. It is very friendly to researchers who are new to this area. Even without writing any code, you can use PyMIC commands to train and test a model by simply editing configure files.
4
+
5
+
Currently PyMIC supports 2D/3D medical image classification and segmentation, and it is still under development. It was originally developed for COVID-19 pneumonia lesion segmentation from CT images. If you use this toolkit, please cite the following paper:
6
+
4
7
5
8
* G. Wang, X. Liu, C. Li, Z. Xu, J. Ruan, H. Zhu, T. Meng, K. Li, N. Huang, S. Zhang.
6
9
[A Noise-robust Framework for Automatic Segmentation of COVID-19 Pneumonia Lesions from CT Images.][tmi2020] IEEE Transactions on Medical Imaging. 39(8):2653-2663, 2020. DOI: [10.1109/TMI.2020.3000314][tmi2020]
PyMIC provides some basic modules for medical image computing that can be share by different applications. We currently provide the following functions:
16
+
* Easy-to-use I/O interface to read and write different 2D and 3D images.
17
+
* Re-useable training and testing pipeline that can be transferred to different tasks.
18
+
* Various data pre-processing methods before sending a tensor into a network.
19
+
* Implementation of loss functions, especially for image segmentation.
20
+
* Implementation of evaluation metrics to get quantitative evaluation of your methods (for segmentation).
21
+
22
+
10
23
# Requirement
11
24
*[Pytorch][torch_link] version >=1.0.1
12
25
*[TensorboardX][tbx_link] to visualize training performance
@@ -15,14 +28,6 @@ This repository proivdes a library and some examples of using pytorch for medica
15
28
[torch_link]:https://pytorch.org/
16
29
[tbx_link]:https://github.com/lanpa/tensorboardX
17
30
18
-
# Advantages
19
-
This package provides some basic modules for medical image computing that can be share by different applications. We currently provide the following functions:
20
-
* Easy-to-use I/O interface to read and write different 2D and 3D images.
21
-
* Re-userable training and testing pipeline that can be transfered to different tasks.
22
-
* Various data pre-processing methods before sending a tensor into a network.
23
-
* Implementation of loss functions (for image segmentation).
24
-
* Implementation of evaluation metrics to get quantitative evaluation of your methods (for segmentation).
0 commit comments