Research Article

SKT-MOT and DyTracker: A Multiobject Tracking Dataset and a Dynamic Tracker for Speed Skating Video

Algorithm 1: TDM.

Input: Video length ;
 Number of tracks ;
Initial frame tracks number;
instability;
1for frame todo
2 ifis instabilitythen
3  ifpresence ofdetections not matched to any track and their confidence are enough highthen
4   Generate new tracks;
5   ;
6  end
7  else ifpresence oftracks not matched to any detection for fifteen consecutive framesthen
8   Delete these tracks;
9   ;
10  else ifno change for fifteen consecutive framesthen
11    stability;
12 end
13 else ifis stabilitythen
14  ifpresence ofdetections not matched to any track for fifteen consecutive framesthen
15   Generate new tracks;
16   ;
17  end
18  else ifpresence oftracks not matched to any detection for fifteen consecutive framesthen
19   Delete these tracks;
20   ;
21  else
22    remain unchanged;
23end
Algorithm 1: TDM.