Skip to main content
. 2021 Jan 28;21(3):889. doi: 10.3390/s21030889
Algorithm 1 Robust Visual Tracking with Reliable Object Information and Kalman Filter
Input: Initial target position p0
Output: Estimated target position pt and updated correlation filters
  •  1:

    Initialize the filters according to p0, and save object features X0

  •  2:

    repeat

  •  3:

     According to the pt1 and correlation filters, calculate the p¯t in frame t;

  •  4:

     Taking the computed p¯t as observation, estimate the target position p^t by Kalman filter;

  •  5:

     Fuse the results of two modules, and obtain pt;

  •  6:

     According to the fusion confidence map, analyse the reliability of the tracking process;

  •  7:

    if reliability>Threshold then

  •  8:

      Send X0,Xt into the online training module, and update the filters;

  •  9:

    else

  •  10:

      Continue;

  •  11:

    end if

  •  12:

    until The last frame of the sequences