-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathreadcheckdataset.m
133 lines (109 loc) · 3.98 KB
/
readcheckdataset.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
% READCHECKDATASET Read dataset and check acquisition parameters.
% [F, W] = readcheckdataset(OPT) returns the image to acquire F and its
% wavelet transform W. Both F and W are N-by-N matrices. OPT is a
% structure, where OPT.datadir specifies the dataset folder and
% OPT.dataset the dataset filename.
%
% OPT.dataset is either a PNG-file or a MAT-file. Use a PNG-file to
% simulate data acquisition. Use a MAT-file to load (experimental) data.
%
% In the MAT-file datasets that are provided with the SPIRIT toolbox, F
% is a CCD camera image while W contains the measurements (i.e., measured
% wavelet coefficients).
%
% Type 'help spiritopt' for details about the OPT structure.
%
% [F,W,OPT] = readcheckdataset(OPT) also check and provide defaults
% values to empty OPT fields
%
% See also FWT2, GETWAVPAR, SPIRITOPT
% Author: F. Rousset, N. Ducros
% Institution: Creatis laboratory, University of Lyon, France
% Date: 30 Apr 2018
% Toolbox: SPIRiT 2.0, https://github.com/nducros/SPIRIT
% License: CC-BY-SA 4.0, https://creativecommons.org/licenses/by-sa/4.0/
function [F,W,opt] = readcheckdataset(opt)
%% Init
p_ok = true;
[~,~,ext] = fileparts(opt.dataset);
%% Default parameters
%-- patterns
if ~isfield(opt,'wav'); opt.wav = 'LeGall'; end
if ~isfield(opt,'par'); opt.par = 0; end
if ~isfield(opt,'patdir'); opt.patDir = 'Patterns'; end
%-- simulation
if strcmp(ext,'.png')
if ~isfield(opt,'b'); opt.b = 8; end
if ~isfield(opt,'noise'); opt.noise = false; end
if ~isfield(opt,'alpha'); opt.alpha = 1e2; end
end
%-- abswp
if ~isfield(opt,'p'); opt.p = [0.9 0.8 0.71 0.02]; end % CR = 80%
%-- pattern generalization
if ~isfield(opt,'exp'); opt.exp = 'split'; end
if ~isfield(opt,'maxitr') && strcmpi(opt.exp,'snmf'); opt.maxitr = 500; end
if ~isfield(opt,'epsilon')&& strcmpi(opt.exp,'snmf'); opt.epsilon = 1e-3; end
%% Check or read dataset
if strcmp(ext,'.mat')
fprintf('-------------------------- Check and Load dataset ----------------------\n');
%-- This loads F_WT (of the CW), wav, J, tform, F (CCD or CW
%-- image), p (default set) and F_WT_lambda_t for
%-- multispectral/time-resolved data
load(fullfile(opt.datadir,opt.dataset));
%-- Fill OPT parameters from dataset
opt.wav = wav;
opt.par = par;
%-- Check set of percentages and fill OPT
if J ~= length(opt.p) || opt.p(J) ~= 0
L_p = length(opt.p);
new_p = zeros(1,J);
if L_p < J
new_p(1:L_p) = opt.p(1:L_p);
else
new_p(1:J-1) = opt.p(1:J-1); % The finest details have not been acquired
end % --> force p(J) to 0
opt.p = new_p;
p_ok = false;
end
%-- Mapping that registers SPC and CCD images, for visual comparison
if exist('tform','var'); opt.tform = tform; end
else %-- Image file
fprintf('------------------------- Load image --------------------------------\n\n');
F = imread(fullfile(opt.datadir,opt.dataset));
%-- RGB image ?
if size(F,3) == 3; F = rgb2gray(F); end
F = double(F);
N = size(F,1);
%-- F square ?
if N ~= size(F,2)
N = min(N,size(F,2)); % Resize to minimum side
F = imresize(F,[N N]);
end
%-- Size of F = power of 2 ?
if round(log2(N)) ~= log2(N) % N is not a power of 2
N = 2^floor(log2(N));
F = imresize(F,[N N]); % Make sure that F is square
end
if opt.noise
%-- Set the maximum number of photons of F to n0
F = opt.n0 * F / max(F(:));
end
J = length(opt.p);
wpar = getwavpar(opt.wav,opt.par);
W = fwt2(F,J,wpar); % Whole WT of F
end
%% Check that given p is a set of percentages
for i = 1:length(opt.p)
if opt.p(i) < 0
opt.p(i) = 0;
p_ok = false;
elseif opt.p(i) > 1
opt.p(i) = 1;
p_ok = false;
end
end
if ~p_ok
disp('The percentage set were not correct and has been changed to:');
disp(opt.p);
end
end