fzh0917 / STMTrack

STMTrack: Template-free Visual Tracking with Space-time Memory Networks
BSD 3-Clause "New" or "Revised" License
78 stars 16 forks source link

About Space-time Memory Network #19

Open ZHISOT opened 2 years ago

ZHISOT commented 2 years ago

Hi, thanks for your good work. num_segments=4 Does it mean that the frame in the Space-time Memory Network is 4?

fzh0917 commented 2 years ago

"num_segments=4" means that the tracker collects 4 frames from all history frames (except for the first frame and the previous frame). Thus, the number of memory frames in the Space-time Memory Network is 6 (4 + 1 + 1) when setting num_segments=4. Hope this answer can solve your question.