项目地址:https://github.com/open-mmlab/OpenPCDet
论文地址:https://arxiv.org/abs/2205.05979
MPPNet论文结构如图所示。本文主要介绍Multi-Frame Feature Interaction部分。

数据流如下图所示。总结而言,INTRA阶段的Query是每个ROI有一个,Key和Value是64个Proxy Points Feature;INTER阶段的Query是每个ROI有64个,Key和Query是64个多帧全局Proxy Points Feature。

完成BBox内部的空间特征提取。
src[1:]: [num_proxy_points, bs*num_rois*num_groups, C]
src_intra_group_fusion: [num_proxy_points, bs*num_rois*num_groups, C]
根据 src[1:]与src_intra_group_fusion更新 src[1:]
针对64个Proxy Points进行空间特征提取
Query: src[:1] [1, bs*num_rois*num_groups, C]
Key: src_intra_group_fusion+pos [num_proxy_points, bs*num_rois*num_groups, C]
Value: src_intra_group_fusion [num_proxy_points, bs*num_rois*num_groups, C]
src_summary: [1, bs*num_rois*num_groups, C]
batch_size是bs*num_rois*num_groups
相当于空间特征提取,每个框会有1个Query,64个Key/Value。
完成BBox帧间的时空特征提取。
src_all_groups: [num_proxy_points, bs*num_rois, C*num_groups]
来源为src[1:]
src_all_groups_fusion: [num_proxy_points, bs*num_rois, C]
每个Proxy Points的全局多帧特征通过MLP完成。
Query: query_list[i] [num_proxy_points, bs*num_rois, C]
来源为src[1:] + pos,长度为num_groups
Key: src_all_groups_fusion+pos [num_proxy_points, bs*num_rois, C]
Value: src_intra_group_fusion [num_proxy_points, bs*num_rois, C]
inter_group_fusion: [num_proxy_points, bs*num_rois, C]
src[1:] 更新为num_groups个inter_group_fusion 。即[num_proxy_points, bs*num_rois*num_groups, C]