├── README.md ├── ResNeXt.py ├── Road_Extraction_UDense.pdf ├── TernausDense.py ├── TernausXt.py ├── albunet18.py ├── albunet50.py ├── albunet_v2.py ├── augmentation.py ├── data_utils.py ├── linknet.py ├── logger.py ├── main.py ├── metrics.py ├── pic ├── U-Dense.pdf ├── U-Dense.png ├── figure_results.pdf ├── figure_results.png ├── network_learning_curves.pdf ├── network_learning_curves.png ├── visual_results.pdf └── visual_results.png ├── predict.py ├── tensorflow_log_loader.py ├── ternausnet.py └── unet.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/README.md -------------------------------------------------------------------------------- /ResNeXt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/ResNeXt.py -------------------------------------------------------------------------------- /Road_Extraction_UDense.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/Road_Extraction_UDense.pdf -------------------------------------------------------------------------------- /TernausDense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/TernausDense.py -------------------------------------------------------------------------------- /TernausXt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/TernausXt.py -------------------------------------------------------------------------------- /albunet18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/albunet18.py -------------------------------------------------------------------------------- /albunet50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/albunet50.py -------------------------------------------------------------------------------- /albunet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/albunet_v2.py -------------------------------------------------------------------------------- /augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/augmentation.py -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/data_utils.py -------------------------------------------------------------------------------- /linknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/linknet.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/logger.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/main.py -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/metrics.py -------------------------------------------------------------------------------- /pic/U-Dense.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/pic/U-Dense.pdf -------------------------------------------------------------------------------- /pic/U-Dense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/pic/U-Dense.png -------------------------------------------------------------------------------- /pic/figure_results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/pic/figure_results.pdf -------------------------------------------------------------------------------- /pic/figure_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/pic/figure_results.png -------------------------------------------------------------------------------- /pic/network_learning_curves.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/pic/network_learning_curves.pdf -------------------------------------------------------------------------------- /pic/network_learning_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/pic/network_learning_curves.png -------------------------------------------------------------------------------- /pic/visual_results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/pic/visual_results.pdf -------------------------------------------------------------------------------- /pic/visual_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/pic/visual_results.png -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/predict.py -------------------------------------------------------------------------------- /tensorflow_log_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/tensorflow_log_loader.py -------------------------------------------------------------------------------- /ternausnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/ternausnet.py -------------------------------------------------------------------------------- /unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiankang1991/road_extraction_remote_sensing/HEAD/unet.py --------------------------------------------------------------------------------