-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun_DLSSVM_CVPR.m
21 lines (19 loc) · 1007 Bytes
/
run_DLSSVM_CVPR.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Code of DLSSVM tracker described in
% "Object Tracking via Dual Linear Structured SVM and Explicit Feature Map",
% Jifeng Ning, Jimei Yang, Shaojie Jiang, Lei Zhang and Ming-Hsuan Yang,
% CVPR,Las Vegas, 4266-4274, 2016.
%
% e-mail:[email protected],jf [email protected],
%
% ********************************************************************%%%%%%
% you need configure the opencv for run this program.
% The program is successfully run under opencv 2.4.8
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function results=run_DLSSVM_CVPR(seq, res_path, bSaveImage)
% function: the interface to the OTB50 and OTB100 proposed by Wu et al CVPR
% 2013 and PAMI15 respectively
results=tracker(seq.path, seq.ext, false, seq.init_rect, seq.startFrame, seq.endFrame, seq.s_frames);
disp(['fps: ' num2str(results.fps)])
results.type = 'rect';
end