-
Notifications
You must be signed in to change notification settings - Fork 5
/
install.m
26 lines (25 loc) · 890 Bytes
/
install.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
%% Install
%
% Copyright (c) 2020-present, Oguzhan Ulucan
% Izmir University of Economics, Turkey
% oguzhan.ulucan.iz@gmail.com | oguzhanulucan.de@gmail.com
%
% This source code is licensed under the license found in the
% LICENSE file in the root directory of this source tree.
% All rights reserved.
%
% Please cite the following work if this program is used:
% Diclehan Karakaya, Oguzhan Ulucan, Mehmet Turkan,
% "PAS-MEF: Multi-exposure image fusion based on principal component analysis,
% adaptive well-exposedness and saliency map", arXiv:2105.11809.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
disp('Installing PAS-MEF')
current = pwd;
addpath(fullfile(current,'Utils','MEF_SSIM'));
addpath(fullfile(current,'Utils','signatureSal'));
addpath(fullfile(current,'Utils','Pyramid'));
addpath(fullfile(current,'Utils'));
savepath
disp('Done!');