【2020-04-06更新】跨模态行人重识别汇总

转载:https://blog.csdn.net/wjbwjbwjbwjb/article/details/100693828
感谢原创博主!

MethodsRegDBSYSU-MM01
Rank-1(%)mAP(%)Rank-1(%)mAP(%)
Deep Zero-Padding(ICCV2017)14.8015.95
HCML(AAAI2018)24.4420.80
cmGAN(IJCAI2018)26.9727.80
BDTR(IJCAI2018)33.4731.8317.0119.66
D2RL(CVPR2019)43.4044.1028.9029.20
HSME(AAAI2019)50.8547.0020.6823.12
IPVT-1 and MSR(Access2019)58.7647.8523.1822.49
EDFL(ArXiv2019)52.5852.9836.9440.77
AlignGAN(ICCV2019)56.3053.4042.4040.70
HPILN(IET IP2019)41.3642.95
TSLFN+HC(ArXiv2019)83.0072.0056.9654.95
DSCSN+CCN(ArXiv2019)60.8060.0035.1037.40
JSIA(AAAI2020)38.1036.90
Hi-CMD(CVPR2020)70.4465.9334.9435.94
cm-SSFT(CVPR2020)72.3072.9061.6063.20
BDTR(IJCAI2018新版本AWG)70.0566.3747.5047.65

1. 2017-ICCV-RGB-Infrared Cross-Modality Person Re-Identification

	Deep Zero-Padding

2. 2018-AAAI-Hierarchical Discriminative Learning for Visible Thermal Person Re-Identification

    Hierarchical Cross-modality Metric Learning  (HCML)

3. 2018-IJCAI-Cross-Modality Person Re-Identification with Generative Adversarial Training

    cross-modality Generative Adversarial Network (cmGAN)

4. 2018-IJCAI-Visible thermal person re-identification via dual-constrained top-ranking

    Bi-directional Dual-constrained Top-Ranking (BDTR)

5. 2019-CVPR-Learning to Reduce Dual-level Discrepancy for Infrared-Visible Person Re-identification

    Dual-level Discrepancy Reduction Learning(D2RL)

6. 2019-AAAI-HSME: Hypersphere Manifold Embedding for Visible Thermal Person Re-Identification

    HyperSphere Manifold Embedding (HSME)

7. 2019-IEEE Access-Person Re-Identification Between Visible and Thermal Camera Images Based on Deep Residual CNN Using Single Input

    (IPVT-1 and MSR)    

8. 2019-ArXiv-Enhancing the Discriminative Feature Learning for Visible-Thermal Cross-Modality Person Re-Identification

    Enhancing Discriminative Feature Learning (EDFL)

9. 2019-ICCV-RGB-Infrared Cross-Modality Person Re-Identification via Joint Pixel and Feature Alignment

	Alignment Generative Adversarial Network (AlignGAN)

10.2019-IET IP-HPILN: A feature learning framework for cross-modality person re-identification

	Hard Pentaplet and Identity Loss Network (HPILN)

11. 2019-ArXiv-Hetero-Center Loss for Cross-Modality Person Re-Identification

	Two-Stream Local Feature Network (TSLFN)+Hetero-Center loss (HC)

12.2019-ArXiv-Attend to the Difference: Cross-Modality Person Re-identification via Contrastive Correlation

	Dual-path Spatial-structure-preserving Common Space Network (DSCSN) + Contrastive Correlation Network (CCN)

13.2020-CVPR-Hi-CMD: Hierarchical Cross-Modality Disentanglement for Visible-Infrared Person Re-Identification

	Hi-CMD

14.2020-CVPR-Cross-modality Person re-identification with Shared-Specific Feature Transfer

	cm-SSFT

15.2020-AAAI-Cross-Modality Paired-Images Generation for RGB-InfraredPerson Re-Identification

	JSIA

数据集

RegDB Dataset 【1】

SYSU-MM01 Dataset 【2】

【1】2017-Sensor-Person Recognition System Based on a Combination of Body Images from Visible Light and Thermal Cameras
【2】2017-ICCV-RGB-Infrared Cross-Modality Person Re-Identification

公开代码

叶茫博士的代码:
https://github.com/mangye16/Cross-Modal-Re-ID-baseline
新版代码:
https://github.com/liuliu408/Cross-Modal-Re-ID-baseline_2020

TSLFN+HC(ArXiv2019)代码:
https://codeload.github.com/98zyx/Hetero-center-loss-for-cross-modality-person-re-id/zip/master

HiCMD(CVPR2020)代码:
https://github.com/bismex/HiCMD

JSIA(AAAI2020)代码:
https://github.com/wangguanan/JSIA-ReID

  • 1
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
模态行人重识别是指通过使用不同的感知模态(如图像和视频)来进行行人身份识别的任务。这个问题涉及到计算机视觉和机器学习等领域。 入门模态行人重识别的一种方法是使用深度学习技术。下面是一些基本的步骤: 1. 数据收集:收集包含图像和视频的模态行人数据集。这些数据可以包括不同时间、场景和视角下的行人图像和视频。 2. 特征提取:使用预训练的深度学习模型(如ResNet、VGG等)来提取图像和视频的特征表示。对于图像,可以直接使用卷积层输出或全局平均池化层输出作为特征向量。对于视频,可以对每一帧进行特征提取,并结合这些特征来表示整个视频。 3. 模态融合:将图像和视频的特征向量进行融合,可以使用简单的方法,如将它们连接在一起或者对它们进行加权平均。这样可以得到一个综合的特征向量,表示模态的行人信息。 4. 重识别模型训练:使用带有标签的数据集来训练模态行人重识别模型。可以使用分类器或者度量学习方法(如三元组损失函数)来学习行人之间的相似性。 5. 测试和评估:使用未见过的数据集对训练好的模型进行测试和评估。可以使用准确率、精确率和召回率等指标来评估模型的性能。 需要注意的是,模态行人重识别是一个挑战性的任务,因为不同模态的数据之间存在一定的差异性。因此,还可以尝试使用领域自适应技术来解决这个问题,以提高模型的泛化能力。 希望这些基本步骤可以帮助你入门模态行人重识别任务!如果你有更具体的问题,请随时提问。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值