GD-GAN: Generative Adversarial Networks for Trajectory Prediction and Group Detection in Crowds网络
2019-09-24 10:16:03ide
Paper: https://arxiv.org/pdf/1812.07667.pdf 编码
Demo video: https://www.youtube.com/watch?v=7cCIC_JIfms spa
本文提出一种基于产生式对抗网络的联合方法来进行轨迹预测和团伙检测。3d
1. Neighborhood Modelling: 视频
给定行人 k 的轨迹,从视频帧 1 到 Tobs,记为:blog
而后做者用 LSTM 对这些轨迹进行编码,获得其 feature embedding:get
而后,做者用 attention 机制,对这些隐层状态进行加权处理,获得:io
其中,权重是经过以下的方式进行计算获得的:pdf
在这里的 a 是一个前向神经网络,是与其余模块联合训练的。此外,做者为了将紧邻的轨迹也建模进来,采用了 hardwired attention context vector,权重 w 的计算方法以下:
其中,dist (n, j) 是第 n 个近邻和 第 j 个时刻的距离。而后,咱们能够经过聚合全部的近邻,获得:$C_t^{h, k}$:
最终,做者融合 soft attention 和 hardwired attention context vector 来表示当前近邻内容:
2. Trajectory Prediction:
==