-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup_paths.m
More file actions
35 lines (24 loc) · 823 Bytes
/
setup_paths.m
File metadata and controls
35 lines (24 loc) · 823 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
32
33
34
35
function setup_paths()
% Add the neccesary paths
% DUCF
addpath('./external_libs/hs');
addpath('./external_libs/libsvm');
[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/']);