├── .gitignore ├── LICENSE ├── bfsClear.py ├── create_pascal_tf_record.py ├── create_pascal_tf_record_all.py ├── deeplab_model.py ├── evaluate.py ├── export_inference_graph.py ├── img ├── 6399_mask.png └── 6399_sat.jpg ├── inference.py ├── label2rgb.py ├── readme.md ├── readme_ch.md ├── resize.py ├── rgb2label.py ├── train.py └── utils ├── __init__.py ├── dataset_util.py └── preprocessing.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/LICENSE -------------------------------------------------------------------------------- /bfsClear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/bfsClear.py -------------------------------------------------------------------------------- /create_pascal_tf_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/create_pascal_tf_record.py -------------------------------------------------------------------------------- /create_pascal_tf_record_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/create_pascal_tf_record_all.py -------------------------------------------------------------------------------- /deeplab_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/deeplab_model.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/evaluate.py -------------------------------------------------------------------------------- /export_inference_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/export_inference_graph.py -------------------------------------------------------------------------------- /img/6399_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/img/6399_mask.png -------------------------------------------------------------------------------- /img/6399_sat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/img/6399_sat.jpg -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/inference.py -------------------------------------------------------------------------------- /label2rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/label2rgb.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/readme.md -------------------------------------------------------------------------------- /readme_ch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/readme_ch.md -------------------------------------------------------------------------------- /resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/resize.py -------------------------------------------------------------------------------- /rgb2label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/rgb2label.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/dataset_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/utils/dataset_util.py -------------------------------------------------------------------------------- /utils/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeneralLi95/deepglobe_land_cover_classification_with_deeplabv3plus/HEAD/utils/preprocessing.py --------------------------------------------------------------------------------