├── LICENSE ├── README.md ├── Utils ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── aucn_model.cpython-36.pyc │ ├── extract_samll_cubic.cpython-36.pyc │ ├── record.cpython-36.pyc │ └── utils.cpython-36.pyc ├── aucn_model.py ├── extract_samll_cubic.py ├── record.py └── utils.py ├── classification_maps ├── Graphical Abstract.png ├── HS_06_21_15_47.png ├── HS_1.png ├── HS_2.png ├── HS_3.png ├── HS_4.png ├── HS_gt.png └── hs.png ├── datasets └── .gitignore ├── geotif2gt.py ├── geotif2mat.py ├── get_classification_map.py ├── mat └── .gitignore ├── models └── .gitignore ├── records ├── CHIKUSEI_aucn_06_19_10_45.txt └── HS_aucn_06_21_15_47.txt └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/README.md -------------------------------------------------------------------------------- /Utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/Utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Utils/__pycache__/aucn_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/Utils/__pycache__/aucn_model.cpython-36.pyc -------------------------------------------------------------------------------- /Utils/__pycache__/extract_samll_cubic.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/Utils/__pycache__/extract_samll_cubic.cpython-36.pyc -------------------------------------------------------------------------------- /Utils/__pycache__/record.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/Utils/__pycache__/record.cpython-36.pyc -------------------------------------------------------------------------------- /Utils/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/Utils/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /Utils/aucn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/Utils/aucn_model.py -------------------------------------------------------------------------------- /Utils/extract_samll_cubic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/Utils/extract_samll_cubic.py -------------------------------------------------------------------------------- /Utils/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/Utils/record.py -------------------------------------------------------------------------------- /Utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/Utils/utils.py -------------------------------------------------------------------------------- /classification_maps/Graphical Abstract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/classification_maps/Graphical Abstract.png -------------------------------------------------------------------------------- /classification_maps/HS_06_21_15_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/classification_maps/HS_06_21_15_47.png -------------------------------------------------------------------------------- /classification_maps/HS_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/classification_maps/HS_1.png -------------------------------------------------------------------------------- /classification_maps/HS_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/classification_maps/HS_2.png -------------------------------------------------------------------------------- /classification_maps/HS_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/classification_maps/HS_3.png -------------------------------------------------------------------------------- /classification_maps/HS_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/classification_maps/HS_4.png -------------------------------------------------------------------------------- /classification_maps/HS_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/classification_maps/HS_gt.png -------------------------------------------------------------------------------- /classification_maps/hs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/classification_maps/hs.png -------------------------------------------------------------------------------- /datasets/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /geotif2gt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/geotif2gt.py -------------------------------------------------------------------------------- /geotif2mat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/geotif2mat.py -------------------------------------------------------------------------------- /get_classification_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/get_classification_map.py -------------------------------------------------------------------------------- /mat/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /records/CHIKUSEI_aucn_06_19_10_45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/records/CHIKUSEI_aucn_06_19_10_45.txt -------------------------------------------------------------------------------- /records/HS_aucn_06_21_15_47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/records/HS_aucn_06_21_15_47.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuguang-52/2019-RemoteSens-AUSSC/HEAD/train.py --------------------------------------------------------------------------------