├── HSI ├── codes │ ├── 1DimentioanlNN.py │ ├── 2DimentionalNN.py │ ├── HybridSN.py │ ├── __pycache__ │ │ └── utils.cpython-312.pyc │ ├── colormaps │ │ ├── colormapHouston.mat │ │ ├── colormapIndian.mat │ │ └── colormapPavia.mat │ ├── conventionalClassifiers.py │ └── utils.py ├── 结果 │ ├── Houston │ │ ├── 1D-Houston.mat │ │ ├── HybridSN-Houston.mat │ │ ├── KNN-houston.mat │ │ ├── RF-Houston.mat │ │ ├── SVM-Houston.mat │ │ └── colormapHuston.mat │ ├── Indian │ │ ├── 1D-Indian.mat │ │ ├── 2D-Indian.mat │ │ ├── HybridSN-Indian.mat │ │ ├── KNN-Indian.mat │ │ ├── RF-Indian.mat │ │ ├── SVM-Indian.mat │ │ └── colormap.mat │ ├── Pavia │ │ ├── 1D-Pavia.mat │ │ ├── 2D-Pavia.mat │ │ ├── HybridSN-Pavia.mat │ │ ├── KNN-Pavia.mat │ │ ├── RF-Pavia.mat │ │ ├── SVM-Pavia.mat │ │ └── colormapPavia.mat │ └── 结果可视化 │ │ ├── 1D-Houston.png │ │ ├── 1D-Indian.png │ │ ├── 1D-Pavia.png │ │ ├── 2D-Indian.png │ │ ├── 2D-Pavia.png │ │ ├── HybridSN-Houston.png │ │ ├── HybridSN-Pavia.png │ │ ├── HybridSN.png │ │ ├── KNN-Houston.png │ │ ├── KNN-Indian.png │ │ ├── KNN-Pavia.png │ │ ├── RF-Houston.png │ │ ├── RF-Indian.png │ │ ├── RF-Pavia.png │ │ ├── SVM-Houston.png │ │ ├── SVM-Pavia.png │ │ └── SVM_Indian.png └── 表格.pdf └── README.md /HSI/codes/1DimentioanlNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/codes/1DimentioanlNN.py -------------------------------------------------------------------------------- /HSI/codes/2DimentionalNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/codes/2DimentionalNN.py -------------------------------------------------------------------------------- /HSI/codes/HybridSN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/codes/HybridSN.py -------------------------------------------------------------------------------- /HSI/codes/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/codes/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /HSI/codes/colormaps/colormapHouston.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/codes/colormaps/colormapHouston.mat -------------------------------------------------------------------------------- /HSI/codes/colormaps/colormapIndian.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/codes/colormaps/colormapIndian.mat -------------------------------------------------------------------------------- /HSI/codes/colormaps/colormapPavia.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/codes/colormaps/colormapPavia.mat -------------------------------------------------------------------------------- /HSI/codes/conventionalClassifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/codes/conventionalClassifiers.py -------------------------------------------------------------------------------- /HSI/codes/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/codes/utils.py -------------------------------------------------------------------------------- /HSI/结果/Houston/1D-Houston.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Houston/1D-Houston.mat -------------------------------------------------------------------------------- /HSI/结果/Houston/HybridSN-Houston.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Houston/HybridSN-Houston.mat -------------------------------------------------------------------------------- /HSI/结果/Houston/KNN-houston.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Houston/KNN-houston.mat -------------------------------------------------------------------------------- /HSI/结果/Houston/RF-Houston.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Houston/RF-Houston.mat -------------------------------------------------------------------------------- /HSI/结果/Houston/SVM-Houston.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Houston/SVM-Houston.mat -------------------------------------------------------------------------------- /HSI/结果/Houston/colormapHuston.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Houston/colormapHuston.mat -------------------------------------------------------------------------------- /HSI/结果/Indian/1D-Indian.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Indian/1D-Indian.mat -------------------------------------------------------------------------------- /HSI/结果/Indian/2D-Indian.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Indian/2D-Indian.mat -------------------------------------------------------------------------------- /HSI/结果/Indian/HybridSN-Indian.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Indian/HybridSN-Indian.mat -------------------------------------------------------------------------------- /HSI/结果/Indian/KNN-Indian.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Indian/KNN-Indian.mat -------------------------------------------------------------------------------- /HSI/结果/Indian/RF-Indian.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Indian/RF-Indian.mat -------------------------------------------------------------------------------- /HSI/结果/Indian/SVM-Indian.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Indian/SVM-Indian.mat -------------------------------------------------------------------------------- /HSI/结果/Indian/colormap.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Indian/colormap.mat -------------------------------------------------------------------------------- /HSI/结果/Pavia/1D-Pavia.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Pavia/1D-Pavia.mat -------------------------------------------------------------------------------- /HSI/结果/Pavia/2D-Pavia.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Pavia/2D-Pavia.mat -------------------------------------------------------------------------------- /HSI/结果/Pavia/HybridSN-Pavia.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Pavia/HybridSN-Pavia.mat -------------------------------------------------------------------------------- /HSI/结果/Pavia/KNN-Pavia.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Pavia/KNN-Pavia.mat -------------------------------------------------------------------------------- /HSI/结果/Pavia/RF-Pavia.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Pavia/RF-Pavia.mat -------------------------------------------------------------------------------- /HSI/结果/Pavia/SVM-Pavia.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Pavia/SVM-Pavia.mat -------------------------------------------------------------------------------- /HSI/结果/Pavia/colormapPavia.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/Pavia/colormapPavia.mat -------------------------------------------------------------------------------- /HSI/结果/结果可视化/1D-Houston.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/结果可视化/1D-Houston.png -------------------------------------------------------------------------------- /HSI/结果/结果可视化/1D-Indian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/结果可视化/1D-Indian.png -------------------------------------------------------------------------------- /HSI/结果/结果可视化/1D-Pavia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/结果可视化/1D-Pavia.png -------------------------------------------------------------------------------- /HSI/结果/结果可视化/2D-Indian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/结果可视化/2D-Indian.png -------------------------------------------------------------------------------- /HSI/结果/结果可视化/2D-Pavia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/结果可视化/2D-Pavia.png -------------------------------------------------------------------------------- /HSI/结果/结果可视化/HybridSN-Houston.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/结果可视化/HybridSN-Houston.png -------------------------------------------------------------------------------- /HSI/结果/结果可视化/HybridSN-Pavia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/结果可视化/HybridSN-Pavia.png -------------------------------------------------------------------------------- /HSI/结果/结果可视化/HybridSN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/结果可视化/HybridSN.png -------------------------------------------------------------------------------- /HSI/结果/结果可视化/KNN-Houston.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/结果可视化/KNN-Houston.png -------------------------------------------------------------------------------- /HSI/结果/结果可视化/KNN-Indian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/结果可视化/KNN-Indian.png -------------------------------------------------------------------------------- /HSI/结果/结果可视化/KNN-Pavia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/结果可视化/KNN-Pavia.png -------------------------------------------------------------------------------- /HSI/结果/结果可视化/RF-Houston.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/结果可视化/RF-Houston.png -------------------------------------------------------------------------------- /HSI/结果/结果可视化/RF-Indian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/结果可视化/RF-Indian.png -------------------------------------------------------------------------------- /HSI/结果/结果可视化/RF-Pavia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/结果可视化/RF-Pavia.png -------------------------------------------------------------------------------- /HSI/结果/结果可视化/SVM-Houston.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/结果可视化/SVM-Houston.png -------------------------------------------------------------------------------- /HSI/结果/结果可视化/SVM-Pavia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/结果可视化/SVM-Pavia.png -------------------------------------------------------------------------------- /HSI/结果/结果可视化/SVM_Indian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/结果/结果可视化/SVM_Indian.png -------------------------------------------------------------------------------- /HSI/表格.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/HSI/表格.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AStupidLight/Hyperspectral-Image-Classification/HEAD/README.md --------------------------------------------------------------------------------