├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── pytorch-unet.iml └── vcs.xml ├── LICENSE ├── README.en.md ├── README.md ├── data.py ├── data ├── JPEGImages │ └── 000799.png ├── SegmentationClass │ └── 000799.png ├── image │ ├── 000799.json │ └── 000799.png └── make_mask_data.py ├── evaluation └── get_evaluation.py ├── net.py ├── params └── README.md ├── result ├── README.md └── result.png ├── test.py ├── train.py ├── train_image ├── 0.png └── README.md └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/pytorch-unet.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/.idea/pytorch-unet.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 仅供学习,禁止用于任何违法行为上! -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/README.md -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/data.py -------------------------------------------------------------------------------- /data/JPEGImages/000799.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/data/JPEGImages/000799.png -------------------------------------------------------------------------------- /data/SegmentationClass/000799.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/data/SegmentationClass/000799.png -------------------------------------------------------------------------------- /data/image/000799.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/data/image/000799.json -------------------------------------------------------------------------------- /data/image/000799.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/data/image/000799.png -------------------------------------------------------------------------------- /data/make_mask_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/data/make_mask_data.py -------------------------------------------------------------------------------- /evaluation/get_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/evaluation/get_evaluation.py -------------------------------------------------------------------------------- /net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/net.py -------------------------------------------------------------------------------- /params/README.md: -------------------------------------------------------------------------------- 1 | 存放权重文件 -------------------------------------------------------------------------------- /result/README.md: -------------------------------------------------------------------------------- 1 | 存放结果文件 2 | -------------------------------------------------------------------------------- /result/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/result/result.png -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/train.py -------------------------------------------------------------------------------- /train_image/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/train_image/0.png -------------------------------------------------------------------------------- /train_image/README.md: -------------------------------------------------------------------------------- 1 | 训练时效果图 -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiaofengsheng/pytorch-UNet/HEAD/utils.py --------------------------------------------------------------------------------