zhanglichao / updatenet

Learning the Model Update for Siamese Trackers (ICCV 2019)
135 stars 23 forks source link

A question about the mixed feture #17

Closed sunhao12121 closed 4 years ago

sunhao12121 commented 4 years ago

thank you for your elegant work. I have a question about the updateNet. When we use the Gaussian filter, actually we use the convolution to calculate the similarity between the template and the search. With the updateNet, if it is possible to produce noise when the Net mix the different template without adding channel or change the storage function. I really want to know how can updateNet mix different template in one feature, maybe I haven't totally understand the structure of your work. Look forward to your reply

zhanglichao commented 4 years ago

hi

Thanks for your interest, and it is proposed by a good question. Yes, we input three different templates into UpdateNet, which predicts the learned template isotropic as the accumulated template. Instead of the learning the total features, we learn the difference of templates by a residual learning method, which is carefully described in the paper. By this training mechanism, the Network could learn a good template exactly similar as the real one.

sunhao12121 commented 4 years ago

thanks for your reply