|
Algorithm 1 Online tracking algorithm. |
Input: Pre-trained CNN (,…,)
Initial target
Sequence of V frames
Output: Estimated sequence of target bounding-boxes
-
1:
Randomly initialize parameters -
-
2:
Draw training samples around , push, push
-
3:
Update parameters -
-
4:
fordo
-
5:
-
6:
for do
-
7:
-
8:
Select N refinements based on Transformation-Net
-
9:
Apply with to the bounding-box to estimate
-
10:
end for
-
11:
Evaluate confidence score Confidence-Net
-
12:
if then
-
13:
-
14:
Draw sample around
-
15:
Update and by adding and limiting their size
-
16:
end if
-
17:
if
then (failure!) apply Re-detection to find
-
18:
Evaluate confidence score Confidence-Net
-
19:
end if
-
20:
if
then Update by using
-
21:
else if t
then Update by using
-
22:
end if
-
23:
end for
|