ForestCoverChange
ForestCoverChange copied to clipboard
Detecting and Predicting Forest Cover Change in Pakistani Areas Using Remote Sensing Imagery
AI-ForestWatch
The aim of this project is to use Landsat-8 imagery to perform forest cover change detection in the Billion Tree Tsunami Afforestation Regions in Pakistan. We do binary land cover segmentation of an image into forest/non-forest classes for our Areas of Interest (AOI), then repeat the same for a whole 7-year temporal series of images from 2014 to 2020 and lastly, compare them to see what forestation changes occured in selected areas. The selected image below shows our results for Battagram district from 2014 to 2020, where red pixels are non-forest labels, green pixels are forest labels and the last image shows overall gain/loss map from 2014 to 2020.
Our Published Work
Our paper contains much more detailed explanation of our methodology, dataset retrieval and preparation, Machine Learning application, model design and band combinations used in our experiments. PDF of the paper is available as jars-spie-accepted-work.pdf in the main repository and it may be accessed online at JARS website.
If you decide to use this work or any proposed ideas in your research, kindly cite our work:
Zulfiqar, A., Ghaffar, M. M., Shahzad, M., Weis, C., Malik, M. I., Shafait, F., & Wehn, N. (2021). AI-ForestWatch: semantic segmentation based end-to-end framework for forest estimation and change detection using multi-spectral remote sensing imagery. Journal of Applied Remote Sensing, 15(2), 024518.
What is this all about?
We analyse the following labelled regions in Pakistan from 2014 to 2020.
Getting Started with Code
All of the models in this repo are written with pytorch.
Dependencies
You will need the following modules to get the code running
Project Hierarchy
BTT-2020-GroundTruth contains the ground truth labels (digitized maps) used as targets for our UNet model. Most of the training scripts are located in LandCoverSegmentation/semantic_segmentation directory. This directory also contains the data set generator script which divides the huge Satellite Images for the entire district into 256x256 tiles, zips their ground truth with them, and writes these blobs to drive. The path to the blobs directory is consumed by the training script. inference_btt_2020.py is the script used to run inference on a given test image using the trained model.