├── .gitignore ├── AUTHORS.md ├── CODE_OF_CONDUCT.md ├── DPM_WORKFLOW.md ├── LICENSE ├── README.md ├── SATELLITE_WORKFLOW.md ├── SECURITY.md ├── SUPPORT.md ├── bda ├── __init__.py ├── config.py ├── datamodules.py ├── datasets.py ├── footprints.py ├── preprocess.py ├── samplers.py └── trainers.py ├── configs ├── example_config.yml └── example_config_clustered.yml ├── create_masks.py ├── data └── demo │ └── labels │ └── Maui_Wildfires_August_0.geojson ├── download_building_footprints.py ├── dpm_intersection.py ├── environment.yml ├── figures ├── buildings.png ├── damage.png ├── dpm_example.png ├── example.png ├── high_contrast_example.png ├── imagery.png ├── rendering_example.png └── tensorboard.png ├── fine_tune.py ├── inference.py ├── merge_with_building_footprints.py ├── notebooks └── Evaluate.ipynb ├── output2visualizer.py ├── project_setup.py ├── run_workflow.py ├── scripts ├── convert_colormapped_dpm_to_raw.py ├── extract_data_mask_from_geotiff.py └── merge_vector_files.py └── tests ├── kakuma_test_area.geojson └── test_download_building_footprints.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DPM_WORKFLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/DPM_WORKFLOW.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/README.md -------------------------------------------------------------------------------- /SATELLITE_WORKFLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/SATELLITE_WORKFLOW.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /bda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/bda/__init__.py -------------------------------------------------------------------------------- /bda/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/bda/config.py -------------------------------------------------------------------------------- /bda/datamodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/bda/datamodules.py -------------------------------------------------------------------------------- /bda/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/bda/datasets.py -------------------------------------------------------------------------------- /bda/footprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/bda/footprints.py -------------------------------------------------------------------------------- /bda/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/bda/preprocess.py -------------------------------------------------------------------------------- /bda/samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/bda/samplers.py -------------------------------------------------------------------------------- /bda/trainers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/bda/trainers.py -------------------------------------------------------------------------------- /configs/example_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/configs/example_config.yml -------------------------------------------------------------------------------- /configs/example_config_clustered.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/configs/example_config_clustered.yml -------------------------------------------------------------------------------- /create_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/create_masks.py -------------------------------------------------------------------------------- /data/demo/labels/Maui_Wildfires_August_0.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/data/demo/labels/Maui_Wildfires_August_0.geojson -------------------------------------------------------------------------------- /download_building_footprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/download_building_footprints.py -------------------------------------------------------------------------------- /dpm_intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/dpm_intersection.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/environment.yml -------------------------------------------------------------------------------- /figures/buildings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/figures/buildings.png -------------------------------------------------------------------------------- /figures/damage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/figures/damage.png -------------------------------------------------------------------------------- /figures/dpm_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/figures/dpm_example.png -------------------------------------------------------------------------------- /figures/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/figures/example.png -------------------------------------------------------------------------------- /figures/high_contrast_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/figures/high_contrast_example.png -------------------------------------------------------------------------------- /figures/imagery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/figures/imagery.png -------------------------------------------------------------------------------- /figures/rendering_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/figures/rendering_example.png -------------------------------------------------------------------------------- /figures/tensorboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/figures/tensorboard.png -------------------------------------------------------------------------------- /fine_tune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/fine_tune.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/inference.py -------------------------------------------------------------------------------- /merge_with_building_footprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/merge_with_building_footprints.py -------------------------------------------------------------------------------- /notebooks/Evaluate.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/notebooks/Evaluate.ipynb -------------------------------------------------------------------------------- /output2visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/output2visualizer.py -------------------------------------------------------------------------------- /project_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/project_setup.py -------------------------------------------------------------------------------- /run_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/run_workflow.py -------------------------------------------------------------------------------- /scripts/convert_colormapped_dpm_to_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/scripts/convert_colormapped_dpm_to_raw.py -------------------------------------------------------------------------------- /scripts/extract_data_mask_from_geotiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/scripts/extract_data_mask_from_geotiff.py -------------------------------------------------------------------------------- /scripts/merge_vector_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/scripts/merge_vector_files.py -------------------------------------------------------------------------------- /tests/kakuma_test_area.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/tests/kakuma_test_area.geojson -------------------------------------------------------------------------------- /tests/test_download_building_footprints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/building-damage-assessment/HEAD/tests/test_download_building_footprints.sh --------------------------------------------------------------------------------