├── LICENSE ├── README.md ├── SSGPN_IP.py ├── data └── IP │ ├── AW_SSGPN.mat │ ├── IP_gt.mat │ ├── IP_gyh.mat │ ├── orig_idx_SSGPN.mat │ ├── result │ ├── GCN_9450_SSGPN.png │ ├── a │ ├── model_weights_SSGPN.h5 │ └── train_log_SSGPN.txt │ ├── testingMap.mat │ ├── trainingMap.mat │ └── trpos.mat ├── figures ├── 1 ├── classification_map.jpg ├── framework.jpg ├── gt.jpg ├── withGNorm.jpg └── withoutGNorm.jpg ├── layers ├── a ├── centers.py └── graph.py ├── load_HSI_data.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/README.md -------------------------------------------------------------------------------- /SSGPN_IP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/SSGPN_IP.py -------------------------------------------------------------------------------- /data/IP/AW_SSGPN.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/data/IP/AW_SSGPN.mat -------------------------------------------------------------------------------- /data/IP/IP_gt.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/data/IP/IP_gt.mat -------------------------------------------------------------------------------- /data/IP/IP_gyh.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/data/IP/IP_gyh.mat -------------------------------------------------------------------------------- /data/IP/orig_idx_SSGPN.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/data/IP/orig_idx_SSGPN.mat -------------------------------------------------------------------------------- /data/IP/result/GCN_9450_SSGPN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/data/IP/result/GCN_9450_SSGPN.png -------------------------------------------------------------------------------- /data/IP/result/a: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/IP/result/model_weights_SSGPN.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/data/IP/result/model_weights_SSGPN.h5 -------------------------------------------------------------------------------- /data/IP/result/train_log_SSGPN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/data/IP/result/train_log_SSGPN.txt -------------------------------------------------------------------------------- /data/IP/testingMap.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/data/IP/testingMap.mat -------------------------------------------------------------------------------- /data/IP/trainingMap.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/data/IP/trainingMap.mat -------------------------------------------------------------------------------- /data/IP/trpos.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/data/IP/trpos.mat -------------------------------------------------------------------------------- /figures/1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /figures/classification_map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/figures/classification_map.jpg -------------------------------------------------------------------------------- /figures/framework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/figures/framework.jpg -------------------------------------------------------------------------------- /figures/gt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/figures/gt.jpg -------------------------------------------------------------------------------- /figures/withGNorm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/figures/withGNorm.jpg -------------------------------------------------------------------------------- /figures/withoutGNorm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/figures/withoutGNorm.jpg -------------------------------------------------------------------------------- /layers/a: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /layers/centers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/layers/centers.py -------------------------------------------------------------------------------- /layers/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/layers/graph.py -------------------------------------------------------------------------------- /load_HSI_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/load_HSI_data.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B-Xi/IGARSS_2021_SSGPN/HEAD/utils.py --------------------------------------------------------------------------------