├── .gitignore ├── LICENSE ├── README.md ├── history ├── trainHistoryDict1.pickle ├── trainHistoryDict2.pickle ├── trainHistoryDict3.pickle ├── trainHistoryDict4.pickle ├── trainHistoryDict5.pickle ├── trainHistoryDict6.pickle ├── trainHitsoryDict7.pickle └── trainHitsoryDict8.pickle ├── requirements.txt ├── res ├── N1.png ├── N2.png ├── label1.png ├── label2.png ├── label3.png ├── label4.png ├── label5.png ├── label6.png ├── label7.png ├── label8.png ├── model_.png ├── model_thre.png ├── pre.png ├── result1.png ├── result2.png ├── x.png ├── x_hist.png └── x_skull.png ├── test.py ├── train.py ├── utils ├── losses.py ├── model.py ├── preprocess.py └── utils.py └── weights ├── label1 └── best.h5 ├── label2 └── best.h5 ├── label3 └── best.h5 ├── label4 └── best.h5 ├── label5 └── best.h5 ├── label6 └── best.h5 ├── label7 └── best.h5 └── label8 └── best.h5 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/README.md -------------------------------------------------------------------------------- /history/trainHistoryDict1.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/history/trainHistoryDict1.pickle -------------------------------------------------------------------------------- /history/trainHistoryDict2.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/history/trainHistoryDict2.pickle -------------------------------------------------------------------------------- /history/trainHistoryDict3.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/history/trainHistoryDict3.pickle -------------------------------------------------------------------------------- /history/trainHistoryDict4.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/history/trainHistoryDict4.pickle -------------------------------------------------------------------------------- /history/trainHistoryDict5.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/history/trainHistoryDict5.pickle -------------------------------------------------------------------------------- /history/trainHistoryDict6.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/history/trainHistoryDict6.pickle -------------------------------------------------------------------------------- /history/trainHitsoryDict7.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/history/trainHitsoryDict7.pickle -------------------------------------------------------------------------------- /history/trainHitsoryDict8.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/history/trainHitsoryDict8.pickle -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/requirements.txt -------------------------------------------------------------------------------- /res/N1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/N1.png -------------------------------------------------------------------------------- /res/N2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/N2.png -------------------------------------------------------------------------------- /res/label1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/label1.png -------------------------------------------------------------------------------- /res/label2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/label2.png -------------------------------------------------------------------------------- /res/label3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/label3.png -------------------------------------------------------------------------------- /res/label4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/label4.png -------------------------------------------------------------------------------- /res/label5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/label5.png -------------------------------------------------------------------------------- /res/label6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/label6.png -------------------------------------------------------------------------------- /res/label7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/label7.png -------------------------------------------------------------------------------- /res/label8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/label8.png -------------------------------------------------------------------------------- /res/model_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/model_.png -------------------------------------------------------------------------------- /res/model_thre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/model_thre.png -------------------------------------------------------------------------------- /res/pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/pre.png -------------------------------------------------------------------------------- /res/result1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/result1.png -------------------------------------------------------------------------------- /res/result2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/result2.png -------------------------------------------------------------------------------- /res/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/x.png -------------------------------------------------------------------------------- /res/x_hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/x_hist.png -------------------------------------------------------------------------------- /res/x_skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/res/x_skull.png -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/train.py -------------------------------------------------------------------------------- /utils/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/utils/losses.py -------------------------------------------------------------------------------- /utils/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/utils/model.py -------------------------------------------------------------------------------- /utils/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/utils/preprocess.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/utils/utils.py -------------------------------------------------------------------------------- /weights/label1/best.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/weights/label1/best.h5 -------------------------------------------------------------------------------- /weights/label2/best.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/weights/label2/best.h5 -------------------------------------------------------------------------------- /weights/label3/best.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/weights/label3/best.h5 -------------------------------------------------------------------------------- /weights/label4/best.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/weights/label4/best.h5 -------------------------------------------------------------------------------- /weights/label5/best.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/weights/label5/best.h5 -------------------------------------------------------------------------------- /weights/label6/best.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/weights/label6/best.h5 -------------------------------------------------------------------------------- /weights/label7/best.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/weights/label7/best.h5 -------------------------------------------------------------------------------- /weights/label8/best.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubamba98/Brain-Segmentation/HEAD/weights/label8/best.h5 --------------------------------------------------------------------------------