├── .gitignore ├── LICENSE ├── SegNet-Basic.py ├── Segnet-Evaluation-Visualization.ipynb ├── camvid_data_loader.py ├── helper.py ├── imgs_results ├── real_road_scene.png └── segmented_road_scene.png ├── model-basic.py ├── model-full.py ├── readme.md ├── segNet_basic_model.json └── weights └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0bserver07/Keras-SegNet-Basic/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0bserver07/Keras-SegNet-Basic/HEAD/LICENSE -------------------------------------------------------------------------------- /SegNet-Basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0bserver07/Keras-SegNet-Basic/HEAD/SegNet-Basic.py -------------------------------------------------------------------------------- /Segnet-Evaluation-Visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0bserver07/Keras-SegNet-Basic/HEAD/Segnet-Evaluation-Visualization.ipynb -------------------------------------------------------------------------------- /camvid_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0bserver07/Keras-SegNet-Basic/HEAD/camvid_data_loader.py -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0bserver07/Keras-SegNet-Basic/HEAD/helper.py -------------------------------------------------------------------------------- /imgs_results/real_road_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0bserver07/Keras-SegNet-Basic/HEAD/imgs_results/real_road_scene.png -------------------------------------------------------------------------------- /imgs_results/segmented_road_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0bserver07/Keras-SegNet-Basic/HEAD/imgs_results/segmented_road_scene.png -------------------------------------------------------------------------------- /model-basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0bserver07/Keras-SegNet-Basic/HEAD/model-basic.py -------------------------------------------------------------------------------- /model-full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0bserver07/Keras-SegNet-Basic/HEAD/model-full.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0bserver07/Keras-SegNet-Basic/HEAD/readme.md -------------------------------------------------------------------------------- /segNet_basic_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0bserver07/Keras-SegNet-Basic/HEAD/segNet_basic_model.json -------------------------------------------------------------------------------- /weights/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------