-
Notifications
You must be signed in to change notification settings - Fork 37
/
test_desci.m
106 lines (90 loc) · 4.14 KB
/
test_desci.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
%TEST_DESCI Test decompress snapshot compressive imaging (DeSCI) for
%simulated coded aperture compressive temporal imaging (CACTI) dataset.
% Reference
% [1] Y. Liu, X. Yuan, J. Suo, D. J. Brady, and Q. Dai, Rank Minimization
% for Snapshot Compressive Imaging, IEEE Trans. Pattern Anal. Mach.
% Intell. (TPAMI), vol. 41, no. 12, pp. 2990-3006, 2019,
% [2] X. Yuan, Generalized alternating projection based total variation
% minimization for compressive sensing, in Proc. IEEE Int. Conf.
% Image Process. (ICIP), pp. 2539-2543, 2016.
% Dataset
% `kobe` and `traffic` dataset from MMLE-GMM (TIP'15) [3] and GMM-TP
% (TIP'14) [4], respectively.
% [3] J. Yang, X. Liao, X. Yuan, P. Llull, D. J. Brady, G. Sapiro, and
% L. Carin, Compressive sensing by learning a Gaussian mixture model
% from measurements, IEEE Trans. Image Process., vol. 24, no. 1,
% pp. 106-119, 2015.
% [4] J. Yang, X. Yuan, X. Liao, P. Llull, G. Sapiro, D. J. Brady, and
% L. Carin, Video compressive sensing using Gaussian mixture models,
% IEEE Trans. Image Process., vol. 23, no. 11, pp. 4863-4878, 2014.
% Contact
% Xin Yuan, Bell Labs, [email protected], initial version Jul 2, 2015.
% Yang Liu, Tsinghua University, [email protected], last
% update Dec 26, 2018.
% See also GAPDENOISE_CACTI, GAPDENOISE.
clear; clc;
% close all
% [0] environment configuration
addpath(genpath('./algorithms')); % algorithms
addpath(genpath('./packages')); % packages
addpath(genpath('./utils')); % utilities
datasetdir = './dataset'; % dataset
resultdir = './results'; % results
% [1] load dataset
para.type = 'cacti'; % type of dataset, cassi or cacti
para.name = 'kobe'; % name of dataset
para.number = 32; % number of frames in the dataset
datapath = sprintf('%s/%s%d_%s.mat',datasetdir,para.name,...
para.number,para.type);
load(datapath); % mask, meas, orig (and para)
para.nframe = 1; % number of coded frames in this test
para.MAXB = 255;
[nrow,ncol,nmask] = size(mask);
nframe = para.nframe; % number of coded frames in this test
MAXB = para.MAXB;
% [1.2] parameter setting for GAP-TV and GAP-WNNM
para.Mfunc = @(z) A_xy(z,mask);
para.Mtfunc = @(z) At_xy_nonorm(z,mask);
para.Phisum = sum(mask.^2,3);
para.Phisum(para.Phisum==0) = 1;
% common parameters
para.lambda = 1; % correction coefficiency
para.acc = 1; % enable GAP-acceleration
para.flag_iqa = false; % disable image quality assessments in iterations
%% [2.1] GAP-TV, ICIP'16
para.lambda = 1; % correction coefficiency
para.maxiter = 100; % maximum iteration
para.acc = 1; % enable acceleration
para.denoiser = 'tv'; % TV denoising
para.tvweight = 0.07*255/MAXB; % weight for TV denoising
para.tviter = 5; % number of iteration for TV denoising
[vgaptv,psnr_gaptv,ssim_gaptv,tgaptv] = ...
gapdenoise_cacti(mask,meas,orig,[],para);
fprintf('GAP-%s mean PSNR %2.2f dB, mean SSIM %.4f, total time % 4.1f s.\n',...
upper(para.denoiser),mean(psnr_gaptv),mean(ssim_gaptv),tgaptv);
%% [2.2] DeSCI, TPAMI'18
para.acc = 1; % enable acceleration
para.denoiser = 'wnnm'; % WNNM denoising
para.wnnm_int = true; % enable GAP-WNNM integrated
para.blockmatch_period = 20; % period of block matching
para.sigma = [100 50 25 12 6]/MAXB; % noise deviation (to be estimated and adapted)
para.vrange = 1; % value range
para.maxiter = [ 60 60 60 60 60];
para.iternum = 1; % iteration number in WNNM
para.enparfor = true; % enable parfor for multi-CPU acceleration
if para.enparfor % if parfor is enabled, start parpool in advance
mycluster = parcluster('local');
delete(gcp('nocreate')); % delete current parpool
poolobj = parpool(mycluster,min(nmask,mycluster.NumWorkers));
end
[vdesci,psnr_desci,ssim_desci,tdesci,psnrall] = ...
gapdenoise_cacti(mask,meas,orig,[],para);
delete(poolobj); % delete pool object
fprintf('DeSCI mean PSNR %2.2f dB, mean SSIM %.4f, total time % 4.1f s.\n',...
mean(psnr_desci),mean(ssim_desci),tdesci);
%% [3] save results as mat file
matdir = [resultdir '/savedmat'];
if ~exist(matdir,'dir')
mkdir(matdir);
end
save([matdir '/desci_' para.type '_' para.name '.mat']);