Introduction (1)Motivation: ① 现实场景中,给所有视频进行标记是一项繁琐和高成本的工作,而且随着监控相机的记录,视频信息会快速增多,因此需要采用半监督学习的方式,只对一部分的视频进行标记. ② 不同的相机有着不同的拍摄条件(如设备质量.图片尺寸等等),不同设备间的差异影响匹配的性能. (2)Contribution: ① 提出一个半监督视频行人重识别方法(semi-supervised video-based person re-id approach). ② 设计了…
Introduction (1)Motivation: 当前的一些video-based reid方法在特征提取.损失函数方面不统一,无法客观比较效果.本文作者将特征提取和损失函数固定,对当前较新的4种行人重识别模型进行比较. (2)Contribution: ① 对四种ReId方法(temporal pooling, temporal attention, RNN and 3D conv)进行科学合理的比较: ② 提出了一种采用时空卷积提取时间特征的注意力提取网络. Method (1)视频片…
problem 977. Squares of a Sorted Array solution: class Solution { public: vector<int> sortedSquares(vector<int>& A) { for(auto &a:A) a *=a; sort(A.begin(), A.end()); return A; } }; 参考1. Leetcode_easy_977. Squares of a Sorted Array; 完…