-
Notifications
You must be signed in to change notification settings - Fork 0
/
tracker_LTSINT.m
18 lines (15 loc) · 1.05 KB
/
tracker_LTSINT.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
% The human readable label for the tracker, used to identify the tracker in reports
% If not set, it will be set to the same value as the identifier.
% It does not have to be unique, but it is best that it is.
tracker_label = 'LTSINT';
% For Python implementations we have created a handy function that generates the appropritate
% command that will run the python executable and execute the given script that includes your
% tracker implementation.
%
% Please customize the line below by substituting the first argument with the name of the
% script of your tracker (not the .py file but just the name of the script) and also provide the
% path (or multiple paths) where the tracker sources % are found as the elements of the cell
% array (second argument).
tracker_command = generate_python_command('LTSINT_vot', {'/home/rtao1/Projects/vot18_code'; '/home/rtao1/Projects/vot18_code/utils'});
tracker_interpreter = '/home/rtao1/local/anaconda2/bin/python2.7';
% tracker_linkpath = {}; % A cell array of custom library directories used by the tracker executable (optional)