-
Notifications
You must be signed in to change notification settings - Fork 0
/
Discussion_Continued.m
192 lines (148 loc) · 5.65 KB
/
Discussion_Continued.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
%% Sequential Recovery for Solving Fourier Phase Retrieval
% Suppose a known patch is added to the right side of the image
% Size of original image: m*n
% Size of the known patch: m*p
% Known patch: pinhole (we can move the pinhole to discuss the separation condition!?)
%%
clear variables
clc
close all
%% Load images
% images = {'baboon.png','cameraman.tif','coins.png'};
images = {'cameraman.tif'};
pinhole_pos = [16 64];
psnr_all = zeros(length(pinhole_pos),length(images));
psnr_ssim = zeros(length(pinhole_pos),length(images));
fig = figure; fig.Position = [100 250 200 400];
[ha, pos] = tight_subplot(2,length(images), [0.01 0.01], [0.01 0.01], [0.01 0.005]);
for p = 1:length(pinhole_pos)
clc,p,tic
for im = 1: length(images)
image_name = images{im};
image_org = im2double(imread(image_name));
image_org = imresize(image_org,[64 64]);
if (im == 2)
image_org = rgb2gray( image_org);
end
maxi = max(image_org(:));
mini = min(image_org(:));
m_org = size(image_org,1);
n_org = size(image_org,2);
% known patch
patch = zeros(m_org,pinhole_pos(p));
patch(1,end) = 64;
I_mod = [image_org patch];
c_n = I_mod(:,end);
[m,n] = size(I_mod);
% R_corr = awgn(xcorr2(I_mod,I_mod),50);
R_corr = xcorr2(I_mod,I_mod);
toeplitz_left = @(z) fliplr(toeplitz([z; zeros(m-1,1)], [z(1),zeros(1,m-1)]));
toeplitz_right = @(z) toeplitz([flipud(z); zeros(m-1,1)], [z(end),zeros(1,m-1)]);
c_n_T = toeplitz_right(c_n);
c_1 = pinv(c_n_T)*R_corr(:,1);
c_1_T = toeplitz_left(c_1);
c_1_p = pinv(c_n_T)*R_corr(:,1:pinhole_pos(p));
%% Sequential Recover
knownRows = [];
unknownRows = setdiff([1:m],knownRows);
H_c = [c_1_T(:,unknownRows) c_n_T(:,unknownRows)];
H_cond = cond(H_c)
H_c_inv = pinv(H_c);
knownColumns = [n-pinhole_pos(p)+1 : n];
% Recovery
I_est = 0*I_mod;
I_est(:,knownColumns) = I_mod(:,knownColumns); % set known columns: first and last ones
I_est(knownRows,:) = I_mod(knownRows,:); % set known rows at each column: first and last pixels
I_est(:,1:pinhole_pos(p)) = c_1_p;
% axes(ha(im ))
% imagesc(log10(R_corr.*R_corr))
% if (im == 1)
% ylabel('Autocorrelation','FontSize',18)
% end
%
% set(gca,'xtick',[])
% set(gca,'ytick',[])
%
for k = pinhole_pos(p)+1:ceil(size(I_est,2)/2)
% estimate two columns
R_n = R_corr(:,k);
R_res = 0;
for l = 1:k-2
% from left to right
R_res = R_res + conv(flipud(I_est(:,end-l)),I_est(:,k-l));
end
if k > 2
R_est = 0;
for l = 0:k-2
R_est = R_est + conv(flipud(I_est(:,end-l)),I_est(:,k-l-1));
end
R_error = (R_corr(:,k-1)-R_est);
end
R_h = R_n-R_res; % remove the terms from correlation of known columns
rowTerms = c_1_T(:,knownRows)*I_est(knownRows,end-k+1) + c_n_T(:,knownRows)*I_est(knownRows,k); % remove the terms from the known rows
R_h = R_h - rowTerms;
I_tmp = reshape(H_c_inv*R_h,[],2);
I_tmp ( I_tmp > 1) = 1;
I_tmp ( I_tmp <- 1) = -1;
I_est(unknownRows,end-k+1) = I_tmp(:,1);
I_est(unknownRows,k) = I_tmp(:,2);
I_est_psnr = psnr(I_est,I_mod);
I_est_ssim = ssim(I_est,I_mod);
end
if (p == 1)
axes(ha(2))
imagesc(I_est(1:m_org,1:n_org));
colormap gray
set(gca,'xtick',[])
set(gca,'ytick',[])
drawnow
else
axes(ha(1))
imagesc(I_est(1:m_org,1:n_org));
% title('Recovered','FontSize',26)
colormap gray
set(gca,'xtick',[])
set(gca,'ytick',[])
drawnow
end
% saveas(gcf,sprintf('Recovered (p = %d).png',pinhole_pos(p)))
psnr_all(p,im) = I_est_psnr;
ssim_all(p,im) = I_est_ssim;
end
time_p = toc;
time_all(p)= time_p;
end
%% PSNR and SSIM
% figure
% plot(pinhole_pos,psnr_all(:,1),'-*','Linewidth',2.5)
% hold all
% plot(pinhole_pos,psnr_all(:,2),'-o','Linewidth',2.5)
% hold all
% plot(pinhole_pos,psnr_all(:,3),'-^','Linewidth',2.5)
% grid on
% grid minor
% xlabel('Separation (p)','FontSize',18)
% ylabel('PSNR (dB)','FontSize',18)
%
% legend('Baboon','Cameraman','Coins','FontSize',20)
% ax = gca ;
% ax.YAxis.FontSize = 20;
% ax.XAxis.FontSize = 20;
%
%
% figure
% plot(pinhole_pos,ssim_all(:,1),'-*','Linewidth',2.5)
% hold all
% plot(pinhole_pos,ssim_all(:,2),'-o','Linewidth',2.5)
% hold all
% plot(pinhole_pos,ssim_all(:,3),'-^','Linewidth',2.5)
% grid on
% grid minor
% xlabel('Separation (p)','FontSize',18)
% ylabel('SSIM','FontSize',18)
%
% legend('Baboon','Cameraman','Coins','FontSize',20)
%
% ax = gca ;
% ax.YAxis.FontSize = 20;
% ax.XAxis.FontSize = 20;