-
Notifications
You must be signed in to change notification settings - Fork 53
/
tracker_MBMD.m
22 lines (17 loc) · 1.23 KB
/
tracker_MBMD.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_MBMDNET.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 = ['MBMD'];
% 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('python_long_MBMD', {'/home/xiaobai/Desktop/MBMD_vot_code/'});
%tracker_command = generate_python_command('python_ncc', {'/home/xiaobai/Documents/vot-toolkit-master/tracker/examples/python'});
tracker_interpreter = 'python';
% tracker_linkpath = {}; % A cell array of custom library directories used by the tracker executable (optional)