├── .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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/Pytorch-IterativeFCN.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/.idea/Pytorch-IterativeFCN.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/iterativeFCN.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/__pycache__/iterativeFCN.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/data_augmentation.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/data/__pycache__/data_augmentation.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/data/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/preprocessing.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/data/__pycache__/preprocessing.cpython-36.pyc -------------------------------------------------------------------------------- /data/data_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/data/data_augmentation.py -------------------------------------------------------------------------------- /data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/data/dataset.py -------------------------------------------------------------------------------- /data/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/data/preprocessing.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/eval.py -------------------------------------------------------------------------------- /imgs/example_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/imgs/example_empty.png -------------------------------------------------------------------------------- /imgs/example_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/imgs/example_normal.png -------------------------------------------------------------------------------- /imgs/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/imgs/model.png -------------------------------------------------------------------------------- /imgs/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/imgs/result.png -------------------------------------------------------------------------------- /instance_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/instance_segmentation.py -------------------------------------------------------------------------------- /iterativeFCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/iterativeFCN.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/test/test_dataset.py -------------------------------------------------------------------------------- /test/test_iterativeFCN_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/test/test_iterativeFCN_summary.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/train.py -------------------------------------------------------------------------------- /utils/__pycache__/metrics.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/utils/__pycache__/metrics.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/utils/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/utils/metrics.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/utils/utils.py -------------------------------------------------------------------------------- /weights/IterativeFCN_pretrained.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leohsuofnthu/Pytorch-IterativeFCN/HEAD/weights/IterativeFCN_pretrained.pth --------------------------------------------------------------------------------