├── .gitignore ├── README.md ├── brain_tumor_segmentation_cnn ├── LICENSE.md ├── README.md ├── brain_tumor_segmentation_models.py ├── patch_library.py └── readme │ ├── 1.png │ ├── Brain Tumor Segmentation Pipeline.png │ ├── color_code.png │ └── result0_10000.png ├── edge_detector_cnn ├── LICENSE.md ├── README.md ├── edge_detector_cnn.py ├── patch_extractor_edges.py └── readme │ ├── Edge Detector Pipeline.png │ ├── result_edge_1.png │ ├── result_edge_14.png │ ├── result_edge_18.png │ ├── result_edge_21.png │ ├── result_edge_26.png │ ├── result_edge__canny_added1.png │ ├── result_edge__canny_added14.png │ ├── result_edge__canny_added18.png │ ├── result_edge__canny_added21.png │ └── result_edge__canny_added26.png ├── pre_processing ├── LICENSE.md ├── brain_pipeline.py └── n4_bias_correction.py ├── random_mha_to_png_converter ├── LICENSE.md └── image_png_converter.py └── two_way_brain_tumor_segmentation_cnn ├── BrainSegmentation ├── BrainSegDCNN_2.py ├── brain_seg_DCNN.py ├── patch_library.py └── two_block_DCNN.py ├── ImagePreProcessing ├── image_preprocessing.py └── patch_extractor.py ├── LICENSE.md ├── README.md ├── README.pdf └── README ├── .gitignore ├── CascadeModel.png ├── README.tex └── singleTwoPathModel.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/README.md -------------------------------------------------------------------------------- /brain_tumor_segmentation_cnn/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/brain_tumor_segmentation_cnn/LICENSE.md -------------------------------------------------------------------------------- /brain_tumor_segmentation_cnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/brain_tumor_segmentation_cnn/README.md -------------------------------------------------------------------------------- /brain_tumor_segmentation_cnn/brain_tumor_segmentation_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/brain_tumor_segmentation_cnn/brain_tumor_segmentation_models.py -------------------------------------------------------------------------------- /brain_tumor_segmentation_cnn/patch_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/brain_tumor_segmentation_cnn/patch_library.py -------------------------------------------------------------------------------- /brain_tumor_segmentation_cnn/readme/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/brain_tumor_segmentation_cnn/readme/1.png -------------------------------------------------------------------------------- /brain_tumor_segmentation_cnn/readme/Brain Tumor Segmentation Pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/brain_tumor_segmentation_cnn/readme/Brain Tumor Segmentation Pipeline.png -------------------------------------------------------------------------------- /brain_tumor_segmentation_cnn/readme/color_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/brain_tumor_segmentation_cnn/readme/color_code.png -------------------------------------------------------------------------------- /brain_tumor_segmentation_cnn/readme/result0_10000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/brain_tumor_segmentation_cnn/readme/result0_10000.png -------------------------------------------------------------------------------- /edge_detector_cnn/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/edge_detector_cnn/LICENSE.md -------------------------------------------------------------------------------- /edge_detector_cnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/edge_detector_cnn/README.md -------------------------------------------------------------------------------- /edge_detector_cnn/edge_detector_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/edge_detector_cnn/edge_detector_cnn.py -------------------------------------------------------------------------------- /edge_detector_cnn/patch_extractor_edges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/edge_detector_cnn/patch_extractor_edges.py -------------------------------------------------------------------------------- /edge_detector_cnn/readme/Edge Detector Pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/edge_detector_cnn/readme/Edge Detector Pipeline.png -------------------------------------------------------------------------------- /edge_detector_cnn/readme/result_edge_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/edge_detector_cnn/readme/result_edge_1.png -------------------------------------------------------------------------------- /edge_detector_cnn/readme/result_edge_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/edge_detector_cnn/readme/result_edge_14.png -------------------------------------------------------------------------------- /edge_detector_cnn/readme/result_edge_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/edge_detector_cnn/readme/result_edge_18.png -------------------------------------------------------------------------------- /edge_detector_cnn/readme/result_edge_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/edge_detector_cnn/readme/result_edge_21.png -------------------------------------------------------------------------------- /edge_detector_cnn/readme/result_edge_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/edge_detector_cnn/readme/result_edge_26.png -------------------------------------------------------------------------------- /edge_detector_cnn/readme/result_edge__canny_added1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/edge_detector_cnn/readme/result_edge__canny_added1.png -------------------------------------------------------------------------------- /edge_detector_cnn/readme/result_edge__canny_added14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/edge_detector_cnn/readme/result_edge__canny_added14.png -------------------------------------------------------------------------------- /edge_detector_cnn/readme/result_edge__canny_added18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/edge_detector_cnn/readme/result_edge__canny_added18.png -------------------------------------------------------------------------------- /edge_detector_cnn/readme/result_edge__canny_added21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/edge_detector_cnn/readme/result_edge__canny_added21.png -------------------------------------------------------------------------------- /edge_detector_cnn/readme/result_edge__canny_added26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/edge_detector_cnn/readme/result_edge__canny_added26.png -------------------------------------------------------------------------------- /pre_processing/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/pre_processing/LICENSE.md -------------------------------------------------------------------------------- /pre_processing/brain_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/pre_processing/brain_pipeline.py -------------------------------------------------------------------------------- /pre_processing/n4_bias_correction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/pre_processing/n4_bias_correction.py -------------------------------------------------------------------------------- /random_mha_to_png_converter/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/random_mha_to_png_converter/LICENSE.md -------------------------------------------------------------------------------- /random_mha_to_png_converter/image_png_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/random_mha_to_png_converter/image_png_converter.py -------------------------------------------------------------------------------- /two_way_brain_tumor_segmentation_cnn/BrainSegmentation/BrainSegDCNN_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/two_way_brain_tumor_segmentation_cnn/BrainSegmentation/BrainSegDCNN_2.py -------------------------------------------------------------------------------- /two_way_brain_tumor_segmentation_cnn/BrainSegmentation/brain_seg_DCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/two_way_brain_tumor_segmentation_cnn/BrainSegmentation/brain_seg_DCNN.py -------------------------------------------------------------------------------- /two_way_brain_tumor_segmentation_cnn/BrainSegmentation/patch_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/two_way_brain_tumor_segmentation_cnn/BrainSegmentation/patch_library.py -------------------------------------------------------------------------------- /two_way_brain_tumor_segmentation_cnn/BrainSegmentation/two_block_DCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/two_way_brain_tumor_segmentation_cnn/BrainSegmentation/two_block_DCNN.py -------------------------------------------------------------------------------- /two_way_brain_tumor_segmentation_cnn/ImagePreProcessing/image_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/two_way_brain_tumor_segmentation_cnn/ImagePreProcessing/image_preprocessing.py -------------------------------------------------------------------------------- /two_way_brain_tumor_segmentation_cnn/ImagePreProcessing/patch_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/two_way_brain_tumor_segmentation_cnn/ImagePreProcessing/patch_extractor.py -------------------------------------------------------------------------------- /two_way_brain_tumor_segmentation_cnn/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/two_way_brain_tumor_segmentation_cnn/LICENSE.md -------------------------------------------------------------------------------- /two_way_brain_tumor_segmentation_cnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/two_way_brain_tumor_segmentation_cnn/README.md -------------------------------------------------------------------------------- /two_way_brain_tumor_segmentation_cnn/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/two_way_brain_tumor_segmentation_cnn/README.pdf -------------------------------------------------------------------------------- /two_way_brain_tumor_segmentation_cnn/README/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/two_way_brain_tumor_segmentation_cnn/README/.gitignore -------------------------------------------------------------------------------- /two_way_brain_tumor_segmentation_cnn/README/CascadeModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/two_way_brain_tumor_segmentation_cnn/README/CascadeModel.png -------------------------------------------------------------------------------- /two_way_brain_tumor_segmentation_cnn/README/README.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/two_way_brain_tumor_segmentation_cnn/README/README.tex -------------------------------------------------------------------------------- /two_way_brain_tumor_segmentation_cnn/README/singleTwoPathModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvdlab/nn-segmentation-for-lar/HEAD/two_way_brain_tumor_segmentation_cnn/README/singleTwoPathModel.png --------------------------------------------------------------------------------