Skip to main content
. 2018 Feb 23;18(2):653. doi: 10.3390/s18020653
Algorithm 1: Proposed tracking algorithm.
Input : Image I; initial target position p0 and scale s0; previous target position pt1 and scale st1.
Output : Estimated object position pt and scale st.
Initialize correlation filters H1trans, H1scale and set K1, D1
Foreach It
 Extract multiple fc generated by VGG-Net;
 Compute the translation correlation ytrans using Equation (5) and Equation (6)
 Set pt to at the maximum of ytrans
 Compute the translation correlation ytrans using Equation (9)
 Set st to at the maximum of yscale
 Compute discounting factor ρt using Equation (12) to Equation (15)
 Update Atrans, Btrans, Ascale, Bscale, K, D
End