├── LICENSE ├── README.md ├── _config.yml ├── fisher ├── fisher.cpp └── fisher_all.cpp ├── mat ├── CS_SP.m ├── Dict_build.m ├── Dict_build_all.m ├── OMP.m ├── PlaneGT.mat ├── Sandiego.mat ├── detect.m ├── get_target_index.m ├── ima │ ├── Dual_window.png │ ├── GT.png │ ├── ROC.png │ ├── ROC_K_3.png │ ├── SVM.png │ ├── Sparse.png │ ├── fisher_all.png │ ├── fisher_part.png │ ├── ima.png │ ├── main_map.png │ ├── reb.png │ └── rebuilt.png ├── local │ ├── CS_SP.m │ ├── OMP.m │ ├── PlaneGT.mat │ ├── S_part.mat │ ├── get_dict_b.m │ ├── get_target_index.m │ ├── ima │ │ ├── ROC.png │ │ ├── ROC_all.png │ │ ├── ROC_smooth_not.png │ │ ├── Residual.png │ │ ├── local_k_4d.png │ │ ├── local_smooth.png │ │ ├── local_smooth_new.png │ │ ├── local_smooth_new_roc.png │ │ ├── locald.png │ │ ├── mirror.png │ │ ├── pinjie_svm_fisher.png │ │ ├── smooth_ROC.png │ │ └── theta.png │ ├── local_plot.m │ ├── local_smooth.m │ ├── local_smooth_plot.m │ ├── local_suitable.m │ ├── mirror.m │ ├── plot_residual.m │ └── source.m ├── omp_norm.m ├── rebuild.m └── save │ ├── Dict_build │ ├── Dict_build.mat │ ├── Dict_build_ROC_X.mat │ └── Dict_build_ROC_Y.mat │ ├── Dict_build_all │ ├── Dict_build_all_X.mat │ ├── Dict_build_all_Y.mat │ └── Residual.mat │ ├── Map.txt │ ├── PlaneGT.mat │ ├── ROC │ ├── Dict_build_ROC_X.mat │ ├── Dict_build_ROC_Y.mat │ ├── Dict_build_all_X.mat │ ├── Dict_build_all_Y.mat │ ├── Local_Smooth_X_2.mat │ ├── Local_Smooth_Y_2.mat │ ├── Local__X_2.mat │ ├── Local__Y_2.mat │ ├── Plot_smooth_not.m │ ├── local_X.mat │ ├── local_Y.mat │ ├── local_smooth_X.mat │ ├── local_smooth_Y.mat │ └── plot_ROC.m │ ├── fisher_Map.txt │ ├── fisher_Map_all.txt │ ├── local │ ├── Residual.mat │ ├── local_X.mat │ └── local_Y.mat │ └── local_smooth │ ├── Residual.mat │ ├── local_smooth_X.mat │ └── local_smooth_Y.mat └── svm ├── Map.txt ├── data.txt ├── gt.txt ├── main.cpp ├── out.txt └── trainSample.xml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/_config.yml -------------------------------------------------------------------------------- /fisher/fisher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/fisher/fisher.cpp -------------------------------------------------------------------------------- /fisher/fisher_all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/fisher/fisher_all.cpp -------------------------------------------------------------------------------- /mat/CS_SP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/CS_SP.m -------------------------------------------------------------------------------- /mat/Dict_build.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/Dict_build.m -------------------------------------------------------------------------------- /mat/Dict_build_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/Dict_build_all.m -------------------------------------------------------------------------------- /mat/OMP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/OMP.m -------------------------------------------------------------------------------- /mat/PlaneGT.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/PlaneGT.mat -------------------------------------------------------------------------------- /mat/Sandiego.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/Sandiego.mat -------------------------------------------------------------------------------- /mat/detect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/detect.m -------------------------------------------------------------------------------- /mat/get_target_index.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/get_target_index.m -------------------------------------------------------------------------------- /mat/ima/Dual_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/ima/Dual_window.png -------------------------------------------------------------------------------- /mat/ima/GT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/ima/GT.png -------------------------------------------------------------------------------- /mat/ima/ROC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/ima/ROC.png -------------------------------------------------------------------------------- /mat/ima/ROC_K_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/ima/ROC_K_3.png -------------------------------------------------------------------------------- /mat/ima/SVM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/ima/SVM.png -------------------------------------------------------------------------------- /mat/ima/Sparse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/ima/Sparse.png -------------------------------------------------------------------------------- /mat/ima/fisher_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/ima/fisher_all.png -------------------------------------------------------------------------------- /mat/ima/fisher_part.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/ima/fisher_part.png -------------------------------------------------------------------------------- /mat/ima/ima.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/ima/ima.png -------------------------------------------------------------------------------- /mat/ima/main_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/ima/main_map.png -------------------------------------------------------------------------------- /mat/ima/reb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/ima/reb.png -------------------------------------------------------------------------------- /mat/ima/rebuilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/ima/rebuilt.png -------------------------------------------------------------------------------- /mat/local/CS_SP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/CS_SP.m -------------------------------------------------------------------------------- /mat/local/OMP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/OMP.m -------------------------------------------------------------------------------- /mat/local/PlaneGT.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/PlaneGT.mat -------------------------------------------------------------------------------- /mat/local/S_part.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/S_part.mat -------------------------------------------------------------------------------- /mat/local/get_dict_b.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/get_dict_b.m -------------------------------------------------------------------------------- /mat/local/get_target_index.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/get_target_index.m -------------------------------------------------------------------------------- /mat/local/ima/ROC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/ima/ROC.png -------------------------------------------------------------------------------- /mat/local/ima/ROC_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/ima/ROC_all.png -------------------------------------------------------------------------------- /mat/local/ima/ROC_smooth_not.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/ima/ROC_smooth_not.png -------------------------------------------------------------------------------- /mat/local/ima/Residual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/ima/Residual.png -------------------------------------------------------------------------------- /mat/local/ima/local_k_4d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/ima/local_k_4d.png -------------------------------------------------------------------------------- /mat/local/ima/local_smooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/ima/local_smooth.png -------------------------------------------------------------------------------- /mat/local/ima/local_smooth_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/ima/local_smooth_new.png -------------------------------------------------------------------------------- /mat/local/ima/local_smooth_new_roc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/ima/local_smooth_new_roc.png -------------------------------------------------------------------------------- /mat/local/ima/locald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/ima/locald.png -------------------------------------------------------------------------------- /mat/local/ima/mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/ima/mirror.png -------------------------------------------------------------------------------- /mat/local/ima/pinjie_svm_fisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/ima/pinjie_svm_fisher.png -------------------------------------------------------------------------------- /mat/local/ima/smooth_ROC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/ima/smooth_ROC.png -------------------------------------------------------------------------------- /mat/local/ima/theta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/ima/theta.png -------------------------------------------------------------------------------- /mat/local/local_plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/local_plot.m -------------------------------------------------------------------------------- /mat/local/local_smooth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/local_smooth.m -------------------------------------------------------------------------------- /mat/local/local_smooth_plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/local_smooth_plot.m -------------------------------------------------------------------------------- /mat/local/local_suitable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/local_suitable.m -------------------------------------------------------------------------------- /mat/local/mirror.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/mirror.m -------------------------------------------------------------------------------- /mat/local/plot_residual.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/plot_residual.m -------------------------------------------------------------------------------- /mat/local/source.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/local/source.m -------------------------------------------------------------------------------- /mat/omp_norm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/omp_norm.m -------------------------------------------------------------------------------- /mat/rebuild.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/rebuild.m -------------------------------------------------------------------------------- /mat/save/Dict_build/Dict_build.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/Dict_build/Dict_build.mat -------------------------------------------------------------------------------- /mat/save/Dict_build/Dict_build_ROC_X.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/Dict_build/Dict_build_ROC_X.mat -------------------------------------------------------------------------------- /mat/save/Dict_build/Dict_build_ROC_Y.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/Dict_build/Dict_build_ROC_Y.mat -------------------------------------------------------------------------------- /mat/save/Dict_build_all/Dict_build_all_X.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/Dict_build_all/Dict_build_all_X.mat -------------------------------------------------------------------------------- /mat/save/Dict_build_all/Dict_build_all_Y.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/Dict_build_all/Dict_build_all_Y.mat -------------------------------------------------------------------------------- /mat/save/Dict_build_all/Residual.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/Dict_build_all/Residual.mat -------------------------------------------------------------------------------- /mat/save/Map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/Map.txt -------------------------------------------------------------------------------- /mat/save/PlaneGT.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/PlaneGT.mat -------------------------------------------------------------------------------- /mat/save/ROC/Dict_build_ROC_X.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/ROC/Dict_build_ROC_X.mat -------------------------------------------------------------------------------- /mat/save/ROC/Dict_build_ROC_Y.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/ROC/Dict_build_ROC_Y.mat -------------------------------------------------------------------------------- /mat/save/ROC/Dict_build_all_X.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/ROC/Dict_build_all_X.mat -------------------------------------------------------------------------------- /mat/save/ROC/Dict_build_all_Y.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/ROC/Dict_build_all_Y.mat -------------------------------------------------------------------------------- /mat/save/ROC/Local_Smooth_X_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/ROC/Local_Smooth_X_2.mat -------------------------------------------------------------------------------- /mat/save/ROC/Local_Smooth_Y_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/ROC/Local_Smooth_Y_2.mat -------------------------------------------------------------------------------- /mat/save/ROC/Local__X_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/ROC/Local__X_2.mat -------------------------------------------------------------------------------- /mat/save/ROC/Local__Y_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/ROC/Local__Y_2.mat -------------------------------------------------------------------------------- /mat/save/ROC/Plot_smooth_not.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/ROC/Plot_smooth_not.m -------------------------------------------------------------------------------- /mat/save/ROC/local_X.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/ROC/local_X.mat -------------------------------------------------------------------------------- /mat/save/ROC/local_Y.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/ROC/local_Y.mat -------------------------------------------------------------------------------- /mat/save/ROC/local_smooth_X.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/ROC/local_smooth_X.mat -------------------------------------------------------------------------------- /mat/save/ROC/local_smooth_Y.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/ROC/local_smooth_Y.mat -------------------------------------------------------------------------------- /mat/save/ROC/plot_ROC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/ROC/plot_ROC.m -------------------------------------------------------------------------------- /mat/save/fisher_Map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/fisher_Map.txt -------------------------------------------------------------------------------- /mat/save/fisher_Map_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/fisher_Map_all.txt -------------------------------------------------------------------------------- /mat/save/local/Residual.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/local/Residual.mat -------------------------------------------------------------------------------- /mat/save/local/local_X.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/local/local_X.mat -------------------------------------------------------------------------------- /mat/save/local/local_Y.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/local/local_Y.mat -------------------------------------------------------------------------------- /mat/save/local_smooth/Residual.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/local_smooth/Residual.mat -------------------------------------------------------------------------------- /mat/save/local_smooth/local_smooth_X.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/local_smooth/local_smooth_X.mat -------------------------------------------------------------------------------- /mat/save/local_smooth/local_smooth_Y.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/mat/save/local_smooth/local_smooth_Y.mat -------------------------------------------------------------------------------- /svm/Map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/svm/Map.txt -------------------------------------------------------------------------------- /svm/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/svm/data.txt -------------------------------------------------------------------------------- /svm/gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/svm/gt.txt -------------------------------------------------------------------------------- /svm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/svm/main.cpp -------------------------------------------------------------------------------- /svm/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/svm/out.txt -------------------------------------------------------------------------------- /svm/trainSample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoupingShan/Hyperspectral-image-target-detection-based-on-sparse-representation/HEAD/svm/trainSample.xml --------------------------------------------------------------------------------