forked from IzouGend/MultipleHypothesisTracking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetVariables.m
More file actions
35 lines (30 loc) · 829 Bytes
/
setVariables.m
File metadata and controls
35 lines (30 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
% ²»²ÉÓñí¹ÛÄ£ÐÍ
other_param.isAppModel = 0;
%% declare variables
obsTreeSetConfirmed = [];
stateTreeSetConfirmed = [];
scoreTreeSetConfirmed = [];
activeTreeSetConfirmed = [];
incompabilityListTreeSet = [];
incompabilityListTreeNodeIDSet = [];
selectedTrackIDs = [];
trackFamilyPrev = [];
firstFrame = min(observation.fr);
lastFrame = max(observation.fr);
familyID = 1;
trackID = uint64(1);
if initTrackNum ~= 0
obsTreeSet(initTrackNum,1) = tree;
stateTreeSet(initTrackNum,1) = tree;
scoreTreeSet(initTrackNum,1) = tree;
idTreeSet(initTrackNum,1) = tree;
activeTreeSet(initTrackNum,1) = tree;
obsMembership = cell(initTrackNum,1);
else
obsTreeSet = [];
stateTreeSet = [];
scoreTreeSet = [];
idTreeSet = [];
activeTreeSet = [];
obsMembership = [];
end