├── .idea ├── SALMON.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── check_loader_patches.py ├── images ├── image.gif ├── label.gif ├── prostate.gif ├── prostate_inf.gif ├── prostate_label.gif ├── result.gif ├── salmon.JPG ├── salmon2.JPG ├── salmon3.JPG ├── salmon4.JPG ├── salmon5.JPG └── salmon6.JPG ├── init.py ├── installation_commands_.txt ├── monai 0.5.0 ├── LICENSE ├── README.md ├── check_loader_patches.py ├── deprecated │ ├── LICENSE │ ├── README.md │ ├── check_loader_patches.py │ ├── check_resolution.py │ ├── docker commands_.txt │ ├── images │ │ ├── image.gif │ │ ├── label.gif │ │ ├── prostate.gif │ │ ├── prostate_inf.gif │ │ ├── prostate_label.gif │ │ ├── result.gif │ │ ├── salmon.JPG │ │ ├── salmon2.JPG │ │ ├── salmon3.JPG │ │ ├── salmon4.JPG │ │ ├── salmon5.JPG │ │ └── salmon6.JPG │ ├── init.py │ ├── multi_label_segmentation_example │ │ ├── check_loader_patches.py │ │ ├── check_resolution.py │ │ ├── init.py │ │ ├── networks.py │ │ ├── organize_folder_structure.py │ │ ├── predict_single_image.py │ │ └── train.py │ ├── networks.py │ ├── organize_folder_structure.py │ ├── predict_single_image.py │ ├── requirements.txt │ └── train.py ├── init.py ├── installation_commands_.txt ├── multi_label_segmentation_example │ ├── init.py │ ├── predict_single_image.py │ └── train.py ├── networks.py ├── organize_folder_structure.py ├── predict_single_image.py ├── requirements.txt ├── train.py └── utils.py ├── networks.py ├── organize_folder_structure.py ├── predict_single_image.py ├── requirements.txt ├── train.py └── utils.py /.idea/SALMON.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 42 | 43 | 48 | 49 | 50 | 58 | 59 | 60 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 |