当前位置:网站首页>[target tracking] |siamfc
[target tracking] |siamfc
2022-07-02 17:42:00 【rrr2】
The paper :Fully-Convolutional Siamese Networks for Object Tracking
Code :https://github.com/huanglianghua/siamfc-pytorch
We trained a twin network to locate sample images in larger search images . A further contribution is the novel twin architecture of complete convolution relative to the search image : The dense and effective sliding window evaluation is realized by calculating the bilinear layer of the cross-correlation between its two inputs .
Z Templates ,x Search area ,ϕ Transform function Feature mapping operation ,g Is a simple distance or similarity measure 

* Represents convolution operation , Get one 17^17 Of score map, Represents the search region The similarity value between each position in the template .
take 17×17 The score graph of is generated by bicubic interpolation 272×272 Image , To determine the position of an object .
The algorithm itself is to compare the similarity between the search area and the target template , Finally get the search area score map. In fact, in principle , This method is very similar to the method of correlation filtering . It matches the target template one by one in the search area , This method of calculating similarity by translation matching one by one is regarded as a convolution , Then find the point with the largest similarity value in the convolution result , As the center of new goals .
The picture above ϕ It's actually CNN Part of , And two ϕ The network structure is the same , This is a typical twin neural network , And in the whole model only conv Layer and the pooling layer , So this is also a typical full convolution (fully-convolutional) neural network .
Extract the sample image and search image of each frame offline , To avoid resizing the image during training .
Feature extraction network φ
φ The corresponding feature extraction network adopts AlexNet
Input
about z
The image cutting method is to select a tight bounding box ( w x h ) , And select more pixels in a certain range around p As the context boundary , p The calculation method of is p = ( w + h ) / 4 , Multiply by a scale parameter , become A ( 127 x 127 )
about x
Will be cut out from the whole picture 255×255 Pictures of the , The center of clipping is predicted by the previous frame bounding-box Center of .
When template image z And search for images x When not enough cutting , The missing part will be averaged RGB Value padding .
Loss function




边栏推荐
- Migrate your accelerator based SAP commerce cloud storefront to Spartacus
- em120.gige.h
- OpenHarmony如何启动FA(本地和远程)
- 求简单微分方程
- RK1126平台项目总结
- Niuke js3 separator
- ROS knowledge points -- the difference between ros:: nodehandle N and NH ("~")
- No such file or directory: ‘/tmp/tmpxxx/tmpxxx.py‘
- Easyswoole3.2 restart failed
- [web technology] 1233 seconds understand web component
猜你喜欢
![[web technology] 1233 seconds understand web component](/img/42/c98d8112dc4ece0a92dda97647be5c.jpg)
[web technology] 1233 seconds understand web component

TCP congestion control details | 2 background
![[comment le réseau se connecte] chapitre 6: demande d'accès au serveur et réponse au client (terminé)](/img/ef/1ac272dbd0e5c4d08a8f01f61d334d.png)
[comment le réseau se connecte] chapitre 6: demande d'accès au serveur et réponse au client (terminé)

Use of nexttile function in MATLAB

The construction of scalable distributed database cluster and the partition design of oneproxy sub database

阿里天池SQL学习笔记——DAY3

【网络是怎样连接的】第六章 请求到达服务器以及响应给客户端(完结)
![[非线性控制理论]7_High gain and High Frequency](/img/e5/6c5ca4a89c97d9613cddccb281b35b.png)
[非线性控制理论]7_High gain and High Frequency

si446使用记录(一):基本资料获取

Chapter 15 string localization and message Dictionary (1)
随机推荐
将您的基于 Accelerator 的 SAP Commerce Cloud Storefront 迁移到 Spartacus
每日一题——小乐乐改数字
维护万星开源向量数据库是什么体验
Platform management background and business menu resource management: business permissions and menu resource management design
Experience home office, feel the completion of the project | community essay solicitation
SAP commerce cloud storefront framework selection: accelerator or Spartacus?
阿里天池SQL学习笔记——DAY3
Win10系统使用pip安装juypter notebook过程记录(安装在系统盘以外的盘)
JS20 array flattening
PCL知识点——体素化网格方法对点云进行下采样
Example nonlinear integer programming
VScode知识点——常见报错
VirtualLab基础实验教程-7.偏振(1)
书包网小说多线程爬虫[通俗易懂]
POJ - 1458 Common Subsequence(最长公共子序列)
Goodbye, shucang. Alibaba's data Lake construction strategy is really awesome!
LeetCode:1380. Lucky number in matrix -- simple
【目标跟踪】|SiamFC
traceroute命令讲解
vector的底层模拟实现