forked from martin-danelljan/ECO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_paths.m
More file actions
31 lines (21 loc) · 749 Bytes
/
setup_paths.m
File metadata and controls
31 lines (21 loc) · 749 Bytes
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
function setup_paths()
% Add the neccesary paths
[pathstr, name, ext] = fileparts(mfilename('fullpath'));
% Tracker implementation
addpath(genpath([pathstr '/implementation/']));
% Runfiles
addpath([pathstr '/runfiles/']);
% Utilities
addpath([pathstr '/utils/']);
% The feature extraction
addpath(genpath([pathstr '/feature_extraction/']));
% Matconvnet
addpath([pathstr '/external_libs/matconvnet/matlab']);
addpath([pathstr '/external_libs/matconvnet/matlab/mex/']);
addpath([pathstr '/external_libs/matconvnet/matlab/simplenn']);
% PDollar toolbox
addpath(genpath([pathstr '/external_libs/pdollar_toolbox/channels']));
% Mtimesx
addpath([pathstr '/external_libs/mtimesx/']);
% mexResize
addpath([pathstr '/external_libs/mexResize/']);