-
Notifications
You must be signed in to change notification settings - Fork 0
/
tracker_ATP.m
20 lines (15 loc) · 1021 Bytes
/
tracker_ATP.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 = ['ATP'];
% 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('vot_atp', {'</PATH/TO/ATP>'});
tracker_interpreter = 'python';
tracker_linkpath = {'</PATH/TO/vot-toolkit/native/trax/build/'}; % A cell array of custom library directories used by the tracker executable (optional)