├── BuildAdjacency.m ├── LICENSE ├── README.md ├── SpectralClustering.m ├── YaleBCrop025.mat ├── bestMap.m ├── hungarian.m ├── linearKernelMatrix.m ├── lowRankKernelSubspaceClustering.m ├── polynKernelMatrix.m ├── rbfKernelMatrix.m ├── runHopkins155.m ├── runHopkinsTwoFrames.m ├── runYaleFaces.m ├── solveB.m └── thrC.m /BuildAdjacency.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panji530/Low-rank-kernel-subspace-clustering/HEAD/BuildAdjacency.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panji530/Low-rank-kernel-subspace-clustering/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panji530/Low-rank-kernel-subspace-clustering/HEAD/README.md -------------------------------------------------------------------------------- /SpectralClustering.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panji530/Low-rank-kernel-subspace-clustering/HEAD/SpectralClustering.m -------------------------------------------------------------------------------- /YaleBCrop025.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panji530/Low-rank-kernel-subspace-clustering/HEAD/YaleBCrop025.mat -------------------------------------------------------------------------------- /bestMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panji530/Low-rank-kernel-subspace-clustering/HEAD/bestMap.m -------------------------------------------------------------------------------- /hungarian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panji530/Low-rank-kernel-subspace-clustering/HEAD/hungarian.m -------------------------------------------------------------------------------- /linearKernelMatrix.m: -------------------------------------------------------------------------------- 1 | function K = linearKernelMatrix(X) 2 | % Author: Pan Ji, University of Adelaide 3 | K = X'*X; 4 | end 5 | -------------------------------------------------------------------------------- /lowRankKernelSubspaceClustering.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panji530/Low-rank-kernel-subspace-clustering/HEAD/lowRankKernelSubspaceClustering.m -------------------------------------------------------------------------------- /polynKernelMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panji530/Low-rank-kernel-subspace-clustering/HEAD/polynKernelMatrix.m -------------------------------------------------------------------------------- /rbfKernelMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panji530/Low-rank-kernel-subspace-clustering/HEAD/rbfKernelMatrix.m -------------------------------------------------------------------------------- /runHopkins155.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panji530/Low-rank-kernel-subspace-clustering/HEAD/runHopkins155.m -------------------------------------------------------------------------------- /runHopkinsTwoFrames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panji530/Low-rank-kernel-subspace-clustering/HEAD/runHopkinsTwoFrames.m -------------------------------------------------------------------------------- /runYaleFaces.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panji530/Low-rank-kernel-subspace-clustering/HEAD/runYaleFaces.m -------------------------------------------------------------------------------- /solveB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panji530/Low-rank-kernel-subspace-clustering/HEAD/solveB.m -------------------------------------------------------------------------------- /thrC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panji530/Low-rank-kernel-subspace-clustering/HEAD/thrC.m --------------------------------------------------------------------------------