|
Algorithm 1 Robust Visual Tracking with Reliable Object Information and Kalman Filter |
Input: Initial target position Output: Estimated target position and updated correlation filters
-
1:
Initialize the filters according to , and save object features
-
2:
repeat
-
3:
According to the and correlation filters, calculate the in frame t;
-
4:
Taking the computed as observation, estimate the target position by Kalman filter;
-
5:
Fuse the results of two modules, and obtain ;
-
6:
According to the fusion confidence map, analyse the reliability of the tracking process;
-
7:
if then
-
8:
Send into the online training module, and update the filters;
-
9:
else
-
10:
Continue;
-
11:
end if
-
12:
until The last frame of the sequences
|