-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup_study.m
executable file
·31 lines (25 loc) · 1.16 KB
/
setup_study.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
fullpath = mfilename('fullpath');
idx = find(fullpath == filesep);
folder = fullpath(1:(idx(end)-1));
addpath([folder '/compressive_sensed_image/structure'])
addpath([folder '/compressive_sensed_image/reconstruct'])
addpath([folder '/compressive_sensed_image/reconstruct/SparseLab/Solvers'])
addpath([folder '/compressive_sensed_image/reconstruct/SparseLab/Transforms'])
addpath([folder '/compressive_sensed_image/reconstruct/SparseLab/SharedTools'])
addpath([folder '/utility/gf_utility_toolbox'])
addpath([folder '/utility/image_quality_toolbox'])
addpath([folder '/utility/image_utility_toolbox'])
addpath([folder '/utility/spotbox'])
addpath([folder '/utility/spgl1'])
addpath([folder '/utility/tfocs'])
addpath([folder '/utility/rice_wavelet_toolbox'])
addpath([folder '/utility/wavelab850/Orthogonal'])
addpath([folder '/utility/gf_statistics_toolbox'])
addpath([folder '/utility/libsvm/matlab'])
addpath([folder '/utility/matlabPyrTools'])
addpath([folder '/utility/matlabPyrTools/MEX'])
addpath([folder '/study'])
addpath([folder '/experiment_framework'])
global EXPERIMENT_ROOT___
EXPERIMENT_ROOT___=folder;
setup_experiment_framework