├── .gitignore ├── Data └── MG_scan_test.nii.gz ├── Docker └── Dockerfile ├── MULTI_SEG ├── src │ ├── Sort_New_data.py │ ├── compute_metrics.py │ ├── correct_file.py │ ├── data_split_csv.py │ ├── init_training_data.py │ ├── merge_seg.py │ ├── models.py │ ├── post_process_test.py │ ├── predict_CBCTSeg.py │ ├── rescall_all.py │ ├── train_CBCTseg.py │ └── utils.py └── vtkToSTL.py ├── README.md └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.DS_Store 3 | *.pyc 4 | -------------------------------------------------------------------------------- /Data/MG_scan_test.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlo24/AMASSS_CBCT/HEAD/Data/MG_scan_test.nii.gz -------------------------------------------------------------------------------- /Docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlo24/AMASSS_CBCT/HEAD/Docker/Dockerfile -------------------------------------------------------------------------------- /MULTI_SEG/src/Sort_New_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlo24/AMASSS_CBCT/HEAD/MULTI_SEG/src/Sort_New_data.py -------------------------------------------------------------------------------- /MULTI_SEG/src/compute_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlo24/AMASSS_CBCT/HEAD/MULTI_SEG/src/compute_metrics.py -------------------------------------------------------------------------------- /MULTI_SEG/src/correct_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlo24/AMASSS_CBCT/HEAD/MULTI_SEG/src/correct_file.py -------------------------------------------------------------------------------- /MULTI_SEG/src/data_split_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlo24/AMASSS_CBCT/HEAD/MULTI_SEG/src/data_split_csv.py -------------------------------------------------------------------------------- /MULTI_SEG/src/init_training_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlo24/AMASSS_CBCT/HEAD/MULTI_SEG/src/init_training_data.py -------------------------------------------------------------------------------- /MULTI_SEG/src/merge_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlo24/AMASSS_CBCT/HEAD/MULTI_SEG/src/merge_seg.py -------------------------------------------------------------------------------- /MULTI_SEG/src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlo24/AMASSS_CBCT/HEAD/MULTI_SEG/src/models.py -------------------------------------------------------------------------------- /MULTI_SEG/src/post_process_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlo24/AMASSS_CBCT/HEAD/MULTI_SEG/src/post_process_test.py -------------------------------------------------------------------------------- /MULTI_SEG/src/predict_CBCTSeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlo24/AMASSS_CBCT/HEAD/MULTI_SEG/src/predict_CBCTSeg.py -------------------------------------------------------------------------------- /MULTI_SEG/src/rescall_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlo24/AMASSS_CBCT/HEAD/MULTI_SEG/src/rescall_all.py -------------------------------------------------------------------------------- /MULTI_SEG/src/train_CBCTseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlo24/AMASSS_CBCT/HEAD/MULTI_SEG/src/train_CBCTseg.py -------------------------------------------------------------------------------- /MULTI_SEG/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlo24/AMASSS_CBCT/HEAD/MULTI_SEG/src/utils.py -------------------------------------------------------------------------------- /MULTI_SEG/vtkToSTL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlo24/AMASSS_CBCT/HEAD/MULTI_SEG/vtkToSTL.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlo24/AMASSS_CBCT/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxlo24/AMASSS_CBCT/HEAD/requirements.txt --------------------------------------------------------------------------------