├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── fig_0_1_2.png ├── inference.py ├── models ├── backbone.py ├── dpt_head.py └── regressor.py ├── notebooks ├── README.md ├── chm_demo.yml ├── data │ └── example_polygon.geojson ├── download_chm.ipynb └── run_chm_model.ipynb ├── pl_modules └── normnet_module.py └── src ├── raster_utils.py └── transforms.py /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/HighResCanopyHeight/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/HighResCanopyHeight/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/HighResCanopyHeight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/HighResCanopyHeight/HEAD/README.md -------------------------------------------------------------------------------- /fig_0_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/HighResCanopyHeight/HEAD/fig_0_1_2.png -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/HighResCanopyHeight/HEAD/inference.py -------------------------------------------------------------------------------- /models/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/HighResCanopyHeight/HEAD/models/backbone.py -------------------------------------------------------------------------------- /models/dpt_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/HighResCanopyHeight/HEAD/models/dpt_head.py -------------------------------------------------------------------------------- /models/regressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/HighResCanopyHeight/HEAD/models/regressor.py -------------------------------------------------------------------------------- /notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/HighResCanopyHeight/HEAD/notebooks/README.md -------------------------------------------------------------------------------- /notebooks/chm_demo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/HighResCanopyHeight/HEAD/notebooks/chm_demo.yml -------------------------------------------------------------------------------- /notebooks/data/example_polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/HighResCanopyHeight/HEAD/notebooks/data/example_polygon.geojson -------------------------------------------------------------------------------- /notebooks/download_chm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/HighResCanopyHeight/HEAD/notebooks/download_chm.ipynb -------------------------------------------------------------------------------- /notebooks/run_chm_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/HighResCanopyHeight/HEAD/notebooks/run_chm_model.ipynb -------------------------------------------------------------------------------- /pl_modules/normnet_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/HighResCanopyHeight/HEAD/pl_modules/normnet_module.py -------------------------------------------------------------------------------- /src/raster_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/HighResCanopyHeight/HEAD/src/raster_utils.py -------------------------------------------------------------------------------- /src/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/HighResCanopyHeight/HEAD/src/transforms.py --------------------------------------------------------------------------------