-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPCA2DL1S.m
75 lines (63 loc) · 1.87 KB
/
PCA2DL1S.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
function W=PCA2DL1S(x,lam,nPV)
% Calculate the 2DPCAL1-S components.
% Generalized two dimensional principal component analysis by Lp-norm for image analysis
% Copyright (C) 2015 Jing Wang
%
% This program is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program. If not, see <http://www.gnu.org/licenses/>.
s=1; % set s as 1 since the script is adopted from GPCA
x0=x;
[~,d,n]=size(x);
% initialization by the results of 2DPCA
cov=zeros(d);
for i=1:n
cov=cov+x(:,:,i)'*x(:,:,i);
end
[V,D]=eig(cov);
[~,indx]=sort(diag(D),'descend');
V=V(:,indx);
W0=V;
% calculate multiple projection vectors
W=zeros(d,nPV);
for iPV=1:nPV
w=W0(:,iPV);
% the value of objective function
f=0;
for i=1:n
f=f+pnorm(x(:,:,i)*w,s)^s;
end
rsd=1;
while rsd>1e-4
fp=f;
% a key vector in G2DPCA problem
v=zeros(d,1);
for i=1:n
z=x(:,:,i);
v=v+z'*(abs(z*w).^(s-1).*sign(z*w));
end
% update rule
w=v.*abs(w)./(lam+abs(w));
w=w/norm(w);
% the value of objective function
f=0;
for i=1:n
f=f+pnorm(x(:,:,i)*w,s)^s;
end
rsd=abs(f-fp)/fp;
end
W(:,iPV)=w;
% deflation
for i=1:n
x(:,:,i)=x0(:,:,i)*(eye(d)-W*W');
end
end