├── .gitignore ├── GCN ├── README.md ├── code │ ├── build_model.py │ ├── data_loader.py │ ├── evaluate.py │ ├── inferences.py │ └── train_model.py └── pics │ ├── gcn4.png │ ├── gcn6.png │ ├── result_NEWMCUCXR_0019_0.png │ └── shrunk_result_NEWMCUCXR_0019_0.png ├── HDC_DUC ├── README.md └── code │ ├── augmentation.py │ ├── build_model.py │ ├── data_loader.py │ ├── flip.py │ ├── inferences.py │ ├── preprocess.py │ └── train_model.py ├── README.md ├── SegNet ├── README.md └── code │ ├── build_model.py │ ├── data_loader.py │ ├── gaussian_noise_and_flipping.py │ ├── inferences.py │ ├── metric_calc.py │ ├── preprocess_combining.py │ ├── preprocess_padding.py │ └── train_model_segnet.py └── VGG_UNet ├── README.md └── code ├── build_model.py ├── data_loader.py ├── gaussian_noise_and_flipping.py ├── inferences.py ├── metric_calc.py ├── preprocess_combining.py ├── preprocess_padding.py ├── train_model_Unet.py ├── train_model_segnet.py └── unet_parts.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /GCN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/GCN/README.md -------------------------------------------------------------------------------- /GCN/code/build_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/GCN/code/build_model.py -------------------------------------------------------------------------------- /GCN/code/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/GCN/code/data_loader.py -------------------------------------------------------------------------------- /GCN/code/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/GCN/code/evaluate.py -------------------------------------------------------------------------------- /GCN/code/inferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/GCN/code/inferences.py -------------------------------------------------------------------------------- /GCN/code/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/GCN/code/train_model.py -------------------------------------------------------------------------------- /GCN/pics/gcn4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/GCN/pics/gcn4.png -------------------------------------------------------------------------------- /GCN/pics/gcn6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/GCN/pics/gcn6.png -------------------------------------------------------------------------------- /GCN/pics/result_NEWMCUCXR_0019_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/GCN/pics/result_NEWMCUCXR_0019_0.png -------------------------------------------------------------------------------- /GCN/pics/shrunk_result_NEWMCUCXR_0019_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/GCN/pics/shrunk_result_NEWMCUCXR_0019_0.png -------------------------------------------------------------------------------- /HDC_DUC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/HDC_DUC/README.md -------------------------------------------------------------------------------- /HDC_DUC/code/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/HDC_DUC/code/augmentation.py -------------------------------------------------------------------------------- /HDC_DUC/code/build_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/HDC_DUC/code/build_model.py -------------------------------------------------------------------------------- /HDC_DUC/code/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/HDC_DUC/code/data_loader.py -------------------------------------------------------------------------------- /HDC_DUC/code/flip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/HDC_DUC/code/flip.py -------------------------------------------------------------------------------- /HDC_DUC/code/inferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/HDC_DUC/code/inferences.py -------------------------------------------------------------------------------- /HDC_DUC/code/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/HDC_DUC/code/preprocess.py -------------------------------------------------------------------------------- /HDC_DUC/code/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/HDC_DUC/code/train_model.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/README.md -------------------------------------------------------------------------------- /SegNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/SegNet/README.md -------------------------------------------------------------------------------- /SegNet/code/build_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/SegNet/code/build_model.py -------------------------------------------------------------------------------- /SegNet/code/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/SegNet/code/data_loader.py -------------------------------------------------------------------------------- /SegNet/code/gaussian_noise_and_flipping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/SegNet/code/gaussian_noise_and_flipping.py -------------------------------------------------------------------------------- /SegNet/code/inferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/SegNet/code/inferences.py -------------------------------------------------------------------------------- /SegNet/code/metric_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/SegNet/code/metric_calc.py -------------------------------------------------------------------------------- /SegNet/code/preprocess_combining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/SegNet/code/preprocess_combining.py -------------------------------------------------------------------------------- /SegNet/code/preprocess_padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/SegNet/code/preprocess_padding.py -------------------------------------------------------------------------------- /SegNet/code/train_model_segnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/SegNet/code/train_model_segnet.py -------------------------------------------------------------------------------- /VGG_UNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/VGG_UNet/README.md -------------------------------------------------------------------------------- /VGG_UNet/code/build_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/VGG_UNet/code/build_model.py -------------------------------------------------------------------------------- /VGG_UNet/code/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/VGG_UNet/code/data_loader.py -------------------------------------------------------------------------------- /VGG_UNet/code/gaussian_noise_and_flipping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/VGG_UNet/code/gaussian_noise_and_flipping.py -------------------------------------------------------------------------------- /VGG_UNet/code/inferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/VGG_UNet/code/inferences.py -------------------------------------------------------------------------------- /VGG_UNet/code/metric_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/VGG_UNet/code/metric_calc.py -------------------------------------------------------------------------------- /VGG_UNet/code/preprocess_combining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/VGG_UNet/code/preprocess_combining.py -------------------------------------------------------------------------------- /VGG_UNet/code/preprocess_padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/VGG_UNet/code/preprocess_padding.py -------------------------------------------------------------------------------- /VGG_UNet/code/train_model_Unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/VGG_UNet/code/train_model_Unet.py -------------------------------------------------------------------------------- /VGG_UNet/code/train_model_segnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/VGG_UNet/code/train_model_segnet.py -------------------------------------------------------------------------------- /VGG_UNet/code/unet_parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDAL-IITB/Lung-Segmentation/HEAD/VGG_UNet/code/unet_parts.py --------------------------------------------------------------------------------