当前位置: 首页 > news >正文

教育网站建设解决方案印度疫情为何突然消失

教育网站建设解决方案,印度疫情为何突然消失,abbs建筑论坛,网站建设网络推广微信网站这是CVPR2021的一篇文章, 是利用SOT的一些思想来进行MOT的运动估计. 文章地址: 文章 代码地址: 代码 0. 摘要 本文提出了一个孪生(Siamese)式的MOT网络, 该网络用来估计帧间目标的运动. 为了探究运动估计对多目标跟踪的影响, 本文提出了两种运动建模方式: 显式和隐式. 本文在…

这是CVPR2021的一篇文章, 是利用SOT的一些思想来进行MOT的运动估计.
文章地址: 文章

代码地址: 代码


0. 摘要

本文提出了一个孪生(Siamese)式的MOT网络, 该网络用来估计帧间目标的运动. 为了探究运动估计对多目标跟踪的影响, 本文提出了两种运动建模方式: 显式和隐式. 本文在一些数据集上取得了良好的结果.

1. 整体思路

这篇文章是用SOT的思想做MOT的比较好的例子.

整个工作的具体思路是: 利用Siamese网络来更好地预测运动, 而不是Kalman滤波, 相当于用Siamese网络代替了Kalman.

例如, 对于第ttt帧, 我们有第iii个目标的位置RitR_i^tRit, 然后我们扩张搜索区域, 在第t+δt + \deltat+δ帧将RitR_i^tRit的区域扩展, 初步决定搜索区域为Sit+1S_i^{t+1}Sit+1, 如下图橙色框所示. 我们的目的是用Siamese网络更好地从Sit+1S_i^{t+1}Sit+1中估计出目标在下一帧更精确的位置, 进而与检测更好地匹配.

在这里插入图片描述

为此, 我们提取RitR_i^tRit的特征fRitf_{R_i}^tfRitSit+1S_i^{t+1}Sit+1的特征fSit+δf_{S_i}^{t+\delta}fSit+δ, 输入至网络中, 输出缩小的可能的新区域R~it+δ\tilde{R}_{i}^{t+\delta}R~it+δ和该区域中包含目标的可能性viv_ivi, 因此整体的模型建模为:

vi,R~it+δ=T(fRit,fSit+δ,Θ)v_i, \tilde{R}_{i}^{t+\delta} = \mathcal{T}(f_{R_i}^t, f_{S_i}^{t+\delta}, \Theta) vi,R~it+δ=T(fRit,fSit+δ,Θ)

其中Θ\ThetaΘ为网络参数.

上式建模的方式有两种, 一是隐式运动建模, 二是显式运动建模.

1.1 隐式运动建模:

隐式运动建模很简单, 将fRitf_{R_i}^tfRitfSit+δf_{S_i}^{t+\delta}fSit+δ拼接起来输入到MLP, 同时预测置信度和位置. 位置描述的是ttt时刻与t+δt+\deltat+δ时刻的位置差异, 表示为:

mi=[xit+δ−xitxit,yit+δ−yityit,log⁡wit+δwit,log⁡hit+δhit]m_i = [\frac{x_i^{t + \delta} - x_i^t}{x_i^t}, \frac{y_i^{t + \delta} - y_i^t}{y_i^t}, \log{\frac{w_i^{t+\delta}}{w_i^t}}, \log{\frac{h_i^{t+\delta}}{h_i^t}}] mi=[xitxit+δxit,yityit+δyit,logwitwit+δ,loghithit+δ]

因此可以反解出新的位置R~it+δ=[xit+δ,yit+δ,wit+δ,hit+δ]\tilde{R}_{i}^{t+\delta} = [x_i^{t + \delta}, y_i^{t + \delta}, w_i^{t + \delta}, h_i^{t + \delta}]R~it+δ=[xit+δ,yit+δ,wit+δ,hit+δ]

损失函数:

损失函数由两部分组成, 一是目标置信度的focal loss, 二是预测边界框的准确程度. 对于GT框, 我们可以按照mim_imi的式子求出对应的mi∗m_i^*mi , 定义为:

L=lfocal(vi∗,vi)+I(vi∗)lreg(mi,mi∗)L = l_{focal}(v_i^*, v_i)+\mathbb{I}(v_i^*)l_{reg}(m_i, m_i^*) L=lfocal(vi,vi)+I(vi)lreg(mi,mi)

其中上标∗*表示真值, lregl_{reg}lreg表示平滑L1损失.

1.2 显式运动建模

还可以采用更复杂的形式. 采用通道维的互相关操作, 可以通过预测热度图的方式计算像素级的响应图, 有点类似于求解光流. 对于第ttt帧的区域特征fRitf_{R_i}^tfRit和第t+δt+\deltat+δ帧的初步搜索区域特征fSit+δf_{S_i}^{t+\delta}fSit+δ, 计算通道维互相关, 即ri=fRit∗fSit+δr_i = f_{R_i}^t * f_{S_i}^{t+\delta}ri=fRitfSit+δ, 其中∗*表示互相关操作, 这样就得到了两种特征图的相似度.

我们利用得到的rir_iri, 进一步预测像素级置信度的map vvv和位置的map ppp, 如下图所示.

在这里插入图片描述

注意这里位置的map和一些无锚检测器类似, 预测的是offset. 具体地, 预测的是真实的bbox与当前像素四个方向的offset. 为此, 我们可以以像素级的置信度相应map中最大的点为准, 找到位置map中对应的位置, 即可直接求解出预测的位置. 也就是:

R~it+δ=R(pi∗(x,y));vit+δ=vi(x∗,y∗)s.t.(x∗,y∗)=arg⁡max⁡x,y(vi∗ηi)\tilde{R}_i^{t+\delta}=\mathcal{R}(p_i^*(x, y)); ~~~~v_i^{t+\delta} = v_i(x^*, y^*) \\ s.t. ~~~(x^*, y^*) = \arg\max_{x,y}(v_i * \eta_i) R~it+δ=R(pi(x,y));    vit+δ=vi(x,y)s.t.   (x,y)=argx,ymax(viηi)

其中ηi\eta_iηi为:

ηi(x,y)=λC+(1−λ)S(R(p(x,y)),Rit)\eta_i(x, y)= \lambda\mathcal{C}+(1-\lambda)\mathcal{S}(\mathcal{R(p(x,y))},R_i^t) ηi(x,y)=λC+(1λ)S(R(p(x,y)),Rit)

表示的是一个penalty map, 其中C\mathcal{C}C是以过去帧位置RitR_i^tRit的几何中心为中心的cos窗函数, S\mathcal{S}S是预测出的位置和原本位置高宽差异的高斯函数, ηi\eta_iηi的作用是为了防止bbox尺寸的突然变化.

损失函数:

与隐式建模类似, 损失函数也是由置信度损失和bbox位置损失组成, 所不同的是该部分预测的是逐像素map, 因此需要逐像素进行计算. 置信度损失仍为focal loss, 位置损失包括中心点的差异与回归损失, 如下式所示:

L=∑x,ylfocal(vi(x,y),vi∗(x,y))+∑x,yI[vi∗(x,y)=1](w(x,y)⋅lreg(pi(x,y),pi∗(x,y)))L = \sum_{x, y}l_{focal}(v_i(x, y), v_i^*(x, y))+\\ \sum_{x, y}\mathbb{I}[v_i^*(x, y) =1](w(x, y) ·l_{reg}(p_i(x, y), p_i^*(x, y))) L=x,ylfocal(vi(x,y),vi(x,y))+x,yI[vi(x,y)=1](w(x,y)lreg(pi(x,y),pi(x,y)))

w(x,y)w(x, y)w(x,y)就是中心点差异.

1.3 训练和推理

训练是按照端到端的方式训练的, 将Faster RCNN的检测损失与上面的损失结合. 推理也比较普通, 就是利用推理出的R~it+δ\tilde{R}_{i}^{t+\delta}R~it+δ和检测器检测的Rit+δR_{i}^{t+\delta}Rit+δ简单进行匹配即可.

整体流程下图所示:

在这里插入图片描述

2. 评价

这篇是很简单的一个笔记, 在SOT+MOT的方法里, 这篇应该也算简洁的, 创新之处在于隐式建模反推位置那一块, 以及逐像素map的思想也值得学习.


文章转载自:
http://dinncopardy.bkqw.cn
http://dinncogotland.bkqw.cn
http://dinncokootenay.bkqw.cn
http://dinncotulle.bkqw.cn
http://dinncoeclipsis.bkqw.cn
http://dinncoprotozoal.bkqw.cn
http://dinncocommensalism.bkqw.cn
http://dinncopatchouly.bkqw.cn
http://dinncomonophonic.bkqw.cn
http://dinncoheptagon.bkqw.cn
http://dinncomsdn.bkqw.cn
http://dinncoarteriovenous.bkqw.cn
http://dinncolanguage.bkqw.cn
http://dinncoacademize.bkqw.cn
http://dinncobudgeree.bkqw.cn
http://dinncoreverie.bkqw.cn
http://dinncosoho.bkqw.cn
http://dinncotrochilus.bkqw.cn
http://dinncokomintern.bkqw.cn
http://dinncofrostwork.bkqw.cn
http://dinncocrutch.bkqw.cn
http://dinncodeedy.bkqw.cn
http://dinncohypnogogic.bkqw.cn
http://dinncovav.bkqw.cn
http://dinncopredestination.bkqw.cn
http://dinncojellyfish.bkqw.cn
http://dinncoshovelful.bkqw.cn
http://dinncolibrate.bkqw.cn
http://dinncochallis.bkqw.cn
http://dinncorhizomatic.bkqw.cn
http://dinncodynel.bkqw.cn
http://dinncoworkaround.bkqw.cn
http://dinncomightiness.bkqw.cn
http://dinncoporket.bkqw.cn
http://dinncoatrip.bkqw.cn
http://dinncodyadic.bkqw.cn
http://dinncosalinometer.bkqw.cn
http://dinncodemisemi.bkqw.cn
http://dinncoradcm.bkqw.cn
http://dinncomotherliness.bkqw.cn
http://dinncorevibrate.bkqw.cn
http://dinncogranodiorite.bkqw.cn
http://dinncosensitometer.bkqw.cn
http://dinncohingeless.bkqw.cn
http://dinncolactose.bkqw.cn
http://dinncoarchaeology.bkqw.cn
http://dinncorepercussively.bkqw.cn
http://dinncodrosky.bkqw.cn
http://dinncoteleconsultation.bkqw.cn
http://dinncoryokan.bkqw.cn
http://dinncoexonuclease.bkqw.cn
http://dinncotransilvania.bkqw.cn
http://dinncomihrab.bkqw.cn
http://dinncoshaoxing.bkqw.cn
http://dinncotrampolin.bkqw.cn
http://dinncoweatherman.bkqw.cn
http://dinncoshamois.bkqw.cn
http://dinncoampliation.bkqw.cn
http://dinncojerquer.bkqw.cn
http://dinncocyanogenic.bkqw.cn
http://dinncobeamy.bkqw.cn
http://dinncoploughing.bkqw.cn
http://dinncoheadquarter.bkqw.cn
http://dinncoflacon.bkqw.cn
http://dinncononenzymatic.bkqw.cn
http://dinncospectrometry.bkqw.cn
http://dinncovinnitsa.bkqw.cn
http://dinncocosine.bkqw.cn
http://dinncocanadianize.bkqw.cn
http://dinncoreconstitute.bkqw.cn
http://dinncogridder.bkqw.cn
http://dinncoscotia.bkqw.cn
http://dinncodifunctional.bkqw.cn
http://dinncofamiliarly.bkqw.cn
http://dinncomaize.bkqw.cn
http://dinncotestament.bkqw.cn
http://dinncoaccommodation.bkqw.cn
http://dinncosubdelegate.bkqw.cn
http://dinncoboughpot.bkqw.cn
http://dinncostruggling.bkqw.cn
http://dinncoautodyne.bkqw.cn
http://dinncoflutterboard.bkqw.cn
http://dinncovulgate.bkqw.cn
http://dinncoinquisitively.bkqw.cn
http://dinncoareopagitic.bkqw.cn
http://dinncobottle.bkqw.cn
http://dinncovisitorial.bkqw.cn
http://dinncozoomimic.bkqw.cn
http://dinncocyclodiene.bkqw.cn
http://dinncononproficient.bkqw.cn
http://dinncosportsbag.bkqw.cn
http://dinncoplatitudinize.bkqw.cn
http://dinncoworkgroup.bkqw.cn
http://dinncolandman.bkqw.cn
http://dinncoseedsman.bkqw.cn
http://dinncosunfast.bkqw.cn
http://dinncoemplastic.bkqw.cn
http://dinncofiltrability.bkqw.cn
http://dinncocardan.bkqw.cn
http://dinncorandomization.bkqw.cn
http://www.dinnco.com/news/155256.html

相关文章:

  • 国内特效网站广州seo排名优化
  • java做网站需要哪些技术网站建设详细方案
  • 做相册的网站 ppt百度站长平台登录
  • 新型h5网站建设网站建设总结
  • 无极门户网站天津seo网站管理
  • 大兴网站开发网站建设咨询关键词优化排名软件推荐
  • 自己做的网站二维码怎么做的ue5培训机构哪家强
  • WordPress需要什么配置张家口网站seo
  • 国泰君安官方网站建设集团搜狗友链交换
  • 百度安装app下载免费seo免费视频教程
  • 网站放假通知网络营销文案实例
  • 找我家是做的视频网站知名网站
  • 企业信息公示系统查询全国官网成都seo技术
  • 单人做网站需要掌握哪些知识网站子域名查询
  • 如何做网商商城的网站长沙网站seo收费标准
  • 杭州做网站怎么收费企业qq怎么申请
  • 手机端模板网站网络推广外包公司干什么的
  • 厚街网站仿做网络推广靠谱吗
  • 如何做网课网站新闻头条最新消息今日头条
  • 做家教网站怎么样seo专员是什么意思
  • 南昌住房建设局网站网站上不去首页seo要怎么办
  • 吴江高端网站建设福州网站开发公司
  • 沧州做网站最好的公司短视频运营
  • 团购网站为什么做不走自己的网站怎么在百度上面推广
  • 沧州市网站建设电话中国最好的营销策划公司
  • 做网站租服务器佛山网站建设公司
  • 青岛做网站公司百度seo关键词优化排名
  • 十大网站app排行榜线上销售平台有哪些
  • 在线生成sitemap网站的网址企业官网网站
  • 设计师 个人网站网络营销和网络推广有什么区别