-
Notifications
You must be signed in to change notification settings - Fork 3
/
tracker_LT_DSE.m
22 lines (16 loc) · 1.1 KB
/
tracker_LT_DSE.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
%error('Tracker not configured! Please edit the tracker_LT_DSE.m file.'); % Remove this line after proper configuration
% 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 = ['LT_DSE'];
% 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('tracker_vot', {'/home/daikenan/Tracking/LT_DSE/'});
tracker_interpreter = 'python';
% tracker_linkpath = {}; % A cell array of custom library directories used by the tracker executable (optional)