Predicting land cover types on remote sensing data using Convolutional Neural Networks. Experimented with U-Net and and U-Net with RestNet50 Encoder backbone architectures to segment satellite imagery.
- How to Run
- Folder Structure
- Datasets
- Neural Network Architectures
- Presentation
- Report
- References
- Licensing
- Clone this repository. Navigate to desired directory and use:
git clone git@github.com:justjoshtings/satellite_image_segmentation.git
- The Python notebook is optimized and set up for proper execution in Google Colab. I'd recommend to upload Land_Cover_Segmentation.ipynb and execute from there. Please see Folder Structure section for how to set up the initial folder structure. The Python notebook will move and create new directories to accomodate for certain preprocessing procedures but the initial setup is shown below.
- Download the data from the competition3 and upload all data into Google Drive workspace based on the prior mentioned folder structure.
- Execute the Python notebook. Note that for training, it is recommended to connect to a GPU enabled runtime for faster training speeds.
satellite_image_segmentation
│ Land_Cover_Segmentation.ipynb
│
└───data
│ │ class_dict.csv
│ │ metadata.csv
│ │
│ └───test
│ │ │ 1499_sat.jpg
│ │ │ 1500_sat.jpg
│ │ │ ...
│ │
│ └───train
│ │ │ 199_sat.jpg
│ │ │ 199_mask.png
│ │ │ ...
│ │
│ └───valid
│ │ │ 1074_sat.jpg
│ │ │ 1074_sat.jpg
│ │ │ ...
DeepGlobe Land Cover Classification Dataset from the Competition3
or Kaggle.
2 types of Fully Convolutional Networks4 were explored with similar final results on validation and testing data.
Ronneberger et al. (2015)'s U-Net1
Neven, Robby & Goedemé, Toon. (2021). A Multi-Branch U-Net for Steel Surface Defect Type and Severity Segmentation. Metals. 11. 870. 10.3390/met11060870.2
- Ronneberger et al. (2015)'s U-Net
- Neven, Robby & Goedemé, Toon. (2021). A Multi-Branch U-Net for Steel Surface Defect Type and Severity Segmentation. Metals. 11. 870. 10.3390/met11060870.
- DeepGlobe Land Cover Classification Dataset from the Competiton
@InProceedings{DeepGlobe18,
author = {Demir, Ilke and Koperski, Krzysztof and Lindenbaum, David and Pang, Guan and Huang, Jing and Basu, Saikat and Hughes, Forest and Tuia, Devis and Raskar, Ramesh},
title = {DeepGlobe 2018: A Challenge to Parse the Earth Through Satellite Images},
booktitle = {The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) Workshops},
month = {June},
year = {2018}
}
- The DeepGlobe Land Cover Classification Challenge and hence, the dataset are governed by DeepGlobe Rules, The DigitalGlobe's Internal Use License Agreement, and Annotation License Agreement.
- MIT License