├── .gitignore ├── Notebooks ├── Preprocessor.ipynb ├── SuperPixel_Decoder.ipynb ├── create_json.ipynb ├── train_ensemble.ipynb └── v2_graph.ipynb ├── README.md ├── Scripts ├── Preprocessor.py ├── SuperPixel_Decoder.py ├── Test.py ├── arg_parse_test.py ├── create_json.py ├── ensemble_decoder.py ├── train_ensemble.py ├── v2_graph.py └── v3_graph_batch_norm.py ├── Visualizations ├── Pictures │ ├── GUI.png │ ├── h_conv1_random_patch.png │ ├── h_conv2_random_patch.png │ └── h_conv3_random_patch.png ├── feature_viz.ipynb ├── feature_viz_gui.ipynb └── weight_visualization.ipynb ├── arglists ├── cl_args.json ├── heavy.json ├── model_paths.json └── model_paths_heavy.json └── images ├── 01_manual1.jpg ├── 01_test.jpg ├── 01_test_src.jpg ├── Architecture.jpg ├── Magnified1.jpg ├── Magnified1_1.jpg ├── Magnified1_2.jpg ├── Magnified1_3.jpg ├── Magnified1_4.jpg ├── Magnified2_1.jpg ├── Magnified2_2.jpg ├── Magnified2_3.jpg ├── Magnified2_4.jpg ├── Magnified3_1.jpg ├── Magnified3_2.jpg ├── Magnified3_3.jpg ├── Magnified3_4.jpg ├── Magnified4_1.jpg ├── Magnified4_2.jpg ├── Magnified4_3.jpg ├── Magnified4_4.jpg ├── Performance_Paper.jpg ├── Proposed-Method.jpg └── ROC_Paper.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/.gitignore -------------------------------------------------------------------------------- /Notebooks/Preprocessor.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Notebooks/Preprocessor.ipynb -------------------------------------------------------------------------------- /Notebooks/SuperPixel_Decoder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Notebooks/SuperPixel_Decoder.ipynb -------------------------------------------------------------------------------- /Notebooks/create_json.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Notebooks/create_json.ipynb -------------------------------------------------------------------------------- /Notebooks/train_ensemble.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Notebooks/train_ensemble.ipynb -------------------------------------------------------------------------------- /Notebooks/v2_graph.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Notebooks/v2_graph.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Scripts/Preprocessor.py -------------------------------------------------------------------------------- /Scripts/SuperPixel_Decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Scripts/SuperPixel_Decoder.py -------------------------------------------------------------------------------- /Scripts/Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Scripts/Test.py -------------------------------------------------------------------------------- /Scripts/arg_parse_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Scripts/arg_parse_test.py -------------------------------------------------------------------------------- /Scripts/create_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Scripts/create_json.py -------------------------------------------------------------------------------- /Scripts/ensemble_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Scripts/ensemble_decoder.py -------------------------------------------------------------------------------- /Scripts/train_ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Scripts/train_ensemble.py -------------------------------------------------------------------------------- /Scripts/v2_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Scripts/v2_graph.py -------------------------------------------------------------------------------- /Scripts/v3_graph_batch_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Scripts/v3_graph_batch_norm.py -------------------------------------------------------------------------------- /Visualizations/Pictures/GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Visualizations/Pictures/GUI.png -------------------------------------------------------------------------------- /Visualizations/Pictures/h_conv1_random_patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Visualizations/Pictures/h_conv1_random_patch.png -------------------------------------------------------------------------------- /Visualizations/Pictures/h_conv2_random_patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Visualizations/Pictures/h_conv2_random_patch.png -------------------------------------------------------------------------------- /Visualizations/Pictures/h_conv3_random_patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Visualizations/Pictures/h_conv3_random_patch.png -------------------------------------------------------------------------------- /Visualizations/feature_viz.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Visualizations/feature_viz.ipynb -------------------------------------------------------------------------------- /Visualizations/feature_viz_gui.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Visualizations/feature_viz_gui.ipynb -------------------------------------------------------------------------------- /Visualizations/weight_visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/Visualizations/weight_visualization.ipynb -------------------------------------------------------------------------------- /arglists/cl_args.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/arglists/cl_args.json -------------------------------------------------------------------------------- /arglists/heavy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/arglists/heavy.json -------------------------------------------------------------------------------- /arglists/model_paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/arglists/model_paths.json -------------------------------------------------------------------------------- /arglists/model_paths_heavy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/arglists/model_paths_heavy.json -------------------------------------------------------------------------------- /images/01_manual1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/01_manual1.jpg -------------------------------------------------------------------------------- /images/01_test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/01_test.jpg -------------------------------------------------------------------------------- /images/01_test_src.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/01_test_src.jpg -------------------------------------------------------------------------------- /images/Architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Architecture.jpg -------------------------------------------------------------------------------- /images/Magnified1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Magnified1.jpg -------------------------------------------------------------------------------- /images/Magnified1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Magnified1_1.jpg -------------------------------------------------------------------------------- /images/Magnified1_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Magnified1_2.jpg -------------------------------------------------------------------------------- /images/Magnified1_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Magnified1_3.jpg -------------------------------------------------------------------------------- /images/Magnified1_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Magnified1_4.jpg -------------------------------------------------------------------------------- /images/Magnified2_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Magnified2_1.jpg -------------------------------------------------------------------------------- /images/Magnified2_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Magnified2_2.jpg -------------------------------------------------------------------------------- /images/Magnified2_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Magnified2_3.jpg -------------------------------------------------------------------------------- /images/Magnified2_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Magnified2_4.jpg -------------------------------------------------------------------------------- /images/Magnified3_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Magnified3_1.jpg -------------------------------------------------------------------------------- /images/Magnified3_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Magnified3_2.jpg -------------------------------------------------------------------------------- /images/Magnified3_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Magnified3_3.jpg -------------------------------------------------------------------------------- /images/Magnified3_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Magnified3_4.jpg -------------------------------------------------------------------------------- /images/Magnified4_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Magnified4_1.jpg -------------------------------------------------------------------------------- /images/Magnified4_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Magnified4_2.jpg -------------------------------------------------------------------------------- /images/Magnified4_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Magnified4_3.jpg -------------------------------------------------------------------------------- /images/Magnified4_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Magnified4_4.jpg -------------------------------------------------------------------------------- /images/Performance_Paper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Performance_Paper.jpg -------------------------------------------------------------------------------- /images/Proposed-Method.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/Proposed-Method.jpg -------------------------------------------------------------------------------- /images/ROC_Paper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KGPML/Deep-Vessel/HEAD/images/ROC_Paper.jpg --------------------------------------------------------------------------------