Skip to main content
. 2018 Jul 20;18(7):2359. doi: 10.3390/s18072359
Algorithm 1: Proposed tracking algorithm.
Input: Image I; Initial target position (u(0),v(0)) and scale ar0; previous target position (u(t1),v(t1)) and scale art1
Output: Estimated object position (u(t),v(t)) and scale art.
For each It
 Extract the deep feature space xt^ thought the pre-trained VGG-Net;
 Update matrix Rt and Qt by linear interpolation using Equation (13) and (14). The SVD is performed and a new Pt is found;
 Update the low dimensional appearance feature space x^t using Equation (15);
 Compute the confidence of the target position using Equation (18);
 Update the tracking model At, b˜t and x^t using Equations (19)–(22);
 Compute the estimated object position (u(t),v(t)) and scale art using fast sub-grid detection;
 If max(sr)<θre,
 Update the estimated object position and scale using the offline Siamese tracker;
 Else
 Output the estimated object position and scale directly;
End