├── .gitignore ├── .idea ├── Pytorch-IterativeFCN.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── __pycache__ ├── iterativeFCN.cpython-36.pyc └── model.cpython-36.pyc ├── data ├── __pycache__ │ ├── data_augmentation.cpython-36.pyc │ ├── dataset.cpython-36.pyc │ └── preprocessing.cpython-36.pyc ├── data_augmentation.py ├── dataset.py └── preprocessing.py ├── eval.py ├── imgs ├── example_empty.png ├── example_normal.png ├── model.png └── result.png ├── instance_segmentation.py ├── iterativeFCN.py ├── requirements.txt ├── test ├── test_dataset.py └── test_iterativeFCN_summary.py ├── train.py ├── utils ├── __pycache__ │ ├── metrics.cpython-36.pyc │ └── utils.cpython-36.pyc ├── metrics.py └── utils.py └── weights └── IterativeFCN_pretrained.pth /.gitignore: -------------------------------------------------------------------------------- 1 | /crop_isotropic_dataset 2 | /CSI_dataset 3 | /isotropic_dataset 4 | /test/samples 5 | /checkpoints -------------------------------------------------------------------------------- /.idea/Pytorch-IterativeFCN.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | -------------------------------------------------------------------------------- /.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 | 6 | 7 | 8 | 9 | 14 | 15 | 20 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 67 | 68 | 69 | 88 | 89 | 90 | 109 | 110 | 111 | 130 | 131 | 132 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 |