Skip to content

Commit

Permalink
Update README.md (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
skim2257 authored Jan 18, 2022
1 parent 0f04145 commit 9aaf51b
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,17 @@ Med-Imagetools takes two step approch to turn messy medical raw dataset to ML re
1. ***Autopipeline***: Crawls the raw dataset, forms a network and performs graph query, based on the user defined modalities. The relevant DICOMS, get processed and saved as nrrds
```
python imgtools/autopipeline.py\
[INPUT DATASET DIRECTORY] \
[INPUT DIRECTORY] \
[OUTPUT DIRECTORY] \
--modalities [FOR EX: CT,RTSTRUCT,PT] \
--spacing [(int,int,int)]\
--modalities [str: CT,RTSTRUCT,PT] \
--spacing [Tuple: (int,int,int)]\
--n_jobs [int]\
--visualize [TRUE\FALSE]\
--visualize [bool: True/False]\
```
2. ***class Dataset***: This class converts processed nrrds to torchio subjects, which can be easily converted to torch dataset
```
from imgtools.io import Dataset
subjects = Dataset.load_from_nrrd(output_directory, ignore_multi=True)
data_set = tio.SubjectsDataset(subjects)
data_loader = torch.utils.data.DataLoader(data_set, batch_size=4, shuffle=True, num_workers=4)
Expand All @@ -76,11 +76,12 @@ Thanks to the following people who have contributed to this project:
* [@mkazmier](https://github.com/mkazmier)
* [@skim2257](https://github.com/skim2257)
* [@Vishwesh4](https://github.com/Vishwesh4)
* [@mnakano](https://github.com/mnakano)

## Contact

If you want to contact, you can reach the following contributors at sejin.kim@uhnresearch.ca or vishweshramanathan@gmail.com
If you have any questions/concerns, you can reach the following contributors at sejin.kim@uhnresearch.ca

## License

This project uses the following license: [Apache License 2.0](http://www.apache.org/licenses/)
This project uses the following license: [Apache License 2.0](http://www.apache.org/licenses/)

0 comments on commit 9aaf51b

Please sign in to comment.