-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathstartup.m
25 lines (24 loc) · 865 Bytes
/
startup.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
addpath('selective_search');
if exist('selective_search/SelectiveSearchCodeIJCV')
addpath('selective_search/SelectiveSearchCodeIJCV');
addpath('selective_search/SelectiveSearchCodeIJCV/Dependencies');
else
fprintf('Warning: you will need the selective search IJCV code.\n');
fprintf('Press any key to download it (runs ./selective_search/fetch_selective_search.sh)> ');
pause;
system('./selective_search/fetch_selective_search.sh');
addpath('selective_search/SelectiveSearchCodeIJCV');
addpath('selective_search/SelectiveSearchCodeIJCV/Dependencies');
end
addpath('utils');
addpath('bin');
addpath('nms');
addpath('finetuning');
if exist('external/caffe/matlab/caffe')
addpath('external/caffe/matlab/caffe');
else
warning('Please install Caffe in ./external/caffe');
end
addpath('imdb');
addpath('segDeepM')
fprintf('segDeepM startup done\n');