├── .gitignore ├── .idea ├── .gitignore ├── 3D-Post-Liver-segmentation.iml ├── codestream.xml ├── deployment.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── DenseCRF ├── 2D-CRF.py └── 3D-CRF.py ├── README.md ├── data_preprocess └── preprocess.py ├── dataset └── dataset.py ├── loss └── Tversky.py ├── main.py ├── models └── ResUNet.py ├── parameter.py ├── test.py └── utils ├── common.py ├── metrics.py └── trainer.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Project exclude paths 2 | /venv/ -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/3D-Post-Liver-segmentation.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/.idea/3D-Post-Liver-segmentation.iml -------------------------------------------------------------------------------- /.idea/codestream.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/.idea/codestream.xml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /DenseCRF/2D-CRF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/DenseCRF/2D-CRF.py -------------------------------------------------------------------------------- /DenseCRF/3D-CRF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/DenseCRF/3D-CRF.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/README.md -------------------------------------------------------------------------------- /data_preprocess/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/data_preprocess/preprocess.py -------------------------------------------------------------------------------- /dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/dataset/dataset.py -------------------------------------------------------------------------------- /loss/Tversky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/loss/Tversky.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/main.py -------------------------------------------------------------------------------- /models/ResUNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/models/ResUNet.py -------------------------------------------------------------------------------- /parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/parameter.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/test.py -------------------------------------------------------------------------------- /utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/utils/common.py -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/utils/metrics.py -------------------------------------------------------------------------------- /utils/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhenlin123/3DResUNet-DSN-CRF-Liver-segmentation/HEAD/utils/trainer.py --------------------------------------------------------------------------------