├── .idea ├── Code.iml ├── deployment.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── README.md ├── figure ├── Comparisonwithstate-of-the-artmodelson2Dand3Ddatasets.png ├── Demonstration of various architectures along with their corresponding models.png ├── Effective ReceptiveFields.png ├── Overview.png ├── Qualitative results of different models on 2D datasets.png ├── Qualitative results of different models on 3D datasets.png ├── Summary of three architectures in biomedical image segmentation.png └── Transmission of global and local features.png ├── nnUNetTrainer_WNet2D.py ├── nnUNetTrainer_WNet2D_L.py ├── nnUNetTrainer_WNet3D.py ├── nnUNetTrainer_WNet3D_M.py └── nnUNetTrainer_WNet3D_S.py /.idea/Code.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/.idea/Code.iml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/README.md -------------------------------------------------------------------------------- /figure/Comparisonwithstate-of-the-artmodelson2Dand3Ddatasets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/figure/Comparisonwithstate-of-the-artmodelson2Dand3Ddatasets.png -------------------------------------------------------------------------------- /figure/Demonstration of various architectures along with their corresponding models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/figure/Demonstration of various architectures along with their corresponding models.png -------------------------------------------------------------------------------- /figure/Effective ReceptiveFields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/figure/Effective ReceptiveFields.png -------------------------------------------------------------------------------- /figure/Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/figure/Overview.png -------------------------------------------------------------------------------- /figure/Qualitative results of different models on 2D datasets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/figure/Qualitative results of different models on 2D datasets.png -------------------------------------------------------------------------------- /figure/Qualitative results of different models on 3D datasets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/figure/Qualitative results of different models on 3D datasets.png -------------------------------------------------------------------------------- /figure/Summary of three architectures in biomedical image segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/figure/Summary of three architectures in biomedical image segmentation.png -------------------------------------------------------------------------------- /figure/Transmission of global and local features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/figure/Transmission of global and local features.png -------------------------------------------------------------------------------- /nnUNetTrainer_WNet2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/nnUNetTrainer_WNet2D.py -------------------------------------------------------------------------------- /nnUNetTrainer_WNet2D_L.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/nnUNetTrainer_WNet2D_L.py -------------------------------------------------------------------------------- /nnUNetTrainer_WNet3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/nnUNetTrainer_WNet3D.py -------------------------------------------------------------------------------- /nnUNetTrainer_WNet3D_M.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/nnUNetTrainer_WNet3D_M.py -------------------------------------------------------------------------------- /nnUNetTrainer_WNet3D_S.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanfeng-Zhou/nnWNet/HEAD/nnUNetTrainer_WNet3D_S.py --------------------------------------------------------------------------------