├── .gitattributes ├── .gitignore ├── CITATION.cff ├── LICENSE ├── README.md ├── augmentation_test.py ├── compute_jp2_meanstd.py ├── hyperspectral_image_generator.py ├── image_functions.py ├── image_mean_std.txt ├── images_for_notebook ├── AnnualCrop │ └── AnnualCrop_1.tif ├── Forest │ └── Forest_3.tif ├── HerbaceousVegetation │ └── HerbaceousVegetation_7.tif ├── Highway │ └── Highway_1.tif ├── augmentation.png ├── jp2_generator.png └── no_augmentation.png ├── jp2_image_mean_std.txt ├── requirements.txt ├── shape_file ├── park_centroids.cpg ├── park_centroids.dbf ├── park_centroids.prj ├── park_centroids.shp └── park_centroids.shx ├── slicing_test.py ├── split_data_to_train_and_validation.py └── train_hyperspectral_vgg19.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/README.md -------------------------------------------------------------------------------- /augmentation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/augmentation_test.py -------------------------------------------------------------------------------- /compute_jp2_meanstd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/compute_jp2_meanstd.py -------------------------------------------------------------------------------- /hyperspectral_image_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/hyperspectral_image_generator.py -------------------------------------------------------------------------------- /image_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/image_functions.py -------------------------------------------------------------------------------- /image_mean_std.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/image_mean_std.txt -------------------------------------------------------------------------------- /images_for_notebook/AnnualCrop/AnnualCrop_1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/images_for_notebook/AnnualCrop/AnnualCrop_1.tif -------------------------------------------------------------------------------- /images_for_notebook/Forest/Forest_3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/images_for_notebook/Forest/Forest_3.tif -------------------------------------------------------------------------------- /images_for_notebook/HerbaceousVegetation/HerbaceousVegetation_7.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/images_for_notebook/HerbaceousVegetation/HerbaceousVegetation_7.tif -------------------------------------------------------------------------------- /images_for_notebook/Highway/Highway_1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/images_for_notebook/Highway/Highway_1.tif -------------------------------------------------------------------------------- /images_for_notebook/augmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/images_for_notebook/augmentation.png -------------------------------------------------------------------------------- /images_for_notebook/jp2_generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/images_for_notebook/jp2_generator.png -------------------------------------------------------------------------------- /images_for_notebook/no_augmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/images_for_notebook/no_augmentation.png -------------------------------------------------------------------------------- /jp2_image_mean_std.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/jp2_image_mean_std.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/requirements.txt -------------------------------------------------------------------------------- /shape_file/park_centroids.cpg: -------------------------------------------------------------------------------- 1 | ISO-8859-1 -------------------------------------------------------------------------------- /shape_file/park_centroids.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/shape_file/park_centroids.dbf -------------------------------------------------------------------------------- /shape_file/park_centroids.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/shape_file/park_centroids.prj -------------------------------------------------------------------------------- /shape_file/park_centroids.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/shape_file/park_centroids.shp -------------------------------------------------------------------------------- /shape_file/park_centroids.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/shape_file/park_centroids.shx -------------------------------------------------------------------------------- /slicing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/slicing_test.py -------------------------------------------------------------------------------- /split_data_to_train_and_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/split_data_to_train_and_validation.py -------------------------------------------------------------------------------- /train_hyperspectral_vgg19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mabdelhack/hyperspectral_image_generator/HEAD/train_hyperspectral_vgg19.py --------------------------------------------------------------------------------