├── .gitattributes ├── .gitignore ├── .ipynb_checkpoints ├── main_script-checkpoint.ipynb ├── predict_multiclass_18_10_20-checkpoint.ipynb └── train_lulc-checkpoint.ipynb ├── README.md ├── __pycache__ ├── predict.cpython-36.pyc ├── train.cpython-36.pyc └── utils.cpython-36.pyc ├── images ├── dev │ ├── img │ │ └── image2.tif │ └── mask │ │ └── label2.tif ├── test │ ├── img │ │ └── image3.tif │ └── mask │ │ └── label3.tif └── train │ ├── img │ ├── image1.tif │ └── image4.tif │ └── mask │ ├── label1.tif │ └── label4.tif ├── label-rgb.tif ├── landuse-landcover.JPG ├── main_script.ipynb ├── predict.py ├── prediction_1-rgb.tif ├── predictions ├── prediction_1.tif └── prediction_4.tif ├── train.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/.gitignore -------------------------------------------------------------------------------- /.ipynb_checkpoints/main_script-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/.ipynb_checkpoints/main_script-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/predict_multiclass_18_10_20-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/.ipynb_checkpoints/predict_multiclass_18_10_20-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/train_lulc-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/.ipynb_checkpoints/train_lulc-checkpoint.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/predict.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/__pycache__/predict.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/train.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/__pycache__/train.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /images/dev/img/image2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/images/dev/img/image2.tif -------------------------------------------------------------------------------- /images/dev/mask/label2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/images/dev/mask/label2.tif -------------------------------------------------------------------------------- /images/test/img/image3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/images/test/img/image3.tif -------------------------------------------------------------------------------- /images/test/mask/label3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/images/test/mask/label3.tif -------------------------------------------------------------------------------- /images/train/img/image1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/images/train/img/image1.tif -------------------------------------------------------------------------------- /images/train/img/image4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/images/train/img/image4.tif -------------------------------------------------------------------------------- /images/train/mask/label1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/images/train/mask/label1.tif -------------------------------------------------------------------------------- /images/train/mask/label4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/images/train/mask/label4.tif -------------------------------------------------------------------------------- /label-rgb.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/label-rgb.tif -------------------------------------------------------------------------------- /landuse-landcover.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/landuse-landcover.JPG -------------------------------------------------------------------------------- /main_script.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/main_script.ipynb -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/predict.py -------------------------------------------------------------------------------- /prediction_1-rgb.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/prediction_1-rgb.tif -------------------------------------------------------------------------------- /predictions/prediction_1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/predictions/prediction_1.tif -------------------------------------------------------------------------------- /predictions/prediction_4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/predictions/prediction_4.tif -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankit13sharma/DeepLearningForLandUseLandCoverClassification/HEAD/utils.py --------------------------------------------------------------------------------