jellyShuang commited on
Commit
243b168
β€’
1 Parent(s): 4e88c73

feat: update readme.md

Browse files
Files changed (1) hide show
  1. README.md +57 -0
README.md CHANGED
@@ -1,3 +1,60 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+ # Multi-Moving Camera Pedestrian Tracking with a New Dataset and Global Link Model
5
+ [![](http://img.shields.io/badge/cs.CV-arXiv%3A2302.07676-B31B1B.svg)](https://arxiv.org/abs/2302.07676)
6
+
7
+ This repository contains the details of the dataset and the Pytorch implementation of the Baseline Method CrossMOT of the Paper:
8
+ [Multi-Moving Camera Pedestrian Tracking with a New Dataset and Global Link Model](https://arxiv.org/abs/2302.07676)
9
+
10
+ ## Abstract
11
+ Ensuring driving safety for autonomous vehicles has become increasingly crucial, highlighting the need for systematic tracking of pedestrians on the road. Most vehicles are equipped with visual sensors, however, the large-scale visual dataset from different agents has not been well studied yet. Basically, most of the multi-target multi-camera (MTMC) tracking systems are composed of two modules: single camera tracking (SCT) and inter-camera tracking (ICT). To reliably coordinate between them, MTMC tracking has been a very complicated task, while tracking across multi-moving cameras makes it even more challenging. In this paper, we focus on multi-target multi-moving camera (MTMMC) tracking, which is attracting increasing attention from the research community. Observing there are few datasets for MTMMC tracking, we collect a new dataset, called Multi-Moving Camera Track (MMCT), which contains sequences under various driving scenarios. To address the common prob- lems of identity switch easily faced by most existing SCT trackers, especially for moving cameras due to ego-motion between the camera and targets, a lightweight appearance-free global link model, called Linker, is proposed to mitigate the identity switch by associating two disjoint tracklets of the same target into a complete trajectory within the same camera. Incorporated with Linker, existing SCT trackers generally obtain a significant improvement. Moreover, a strong baseline approach of re- identification (Re-ID) is effectively incorporated to extract robust appearance features under varying surroundings for pedestrian association across moving cameras for ICT, resulting in a much improved MTMMC tracking system, which can constitute a step further towards coordinated mining of multiple moving cameras.
12
+
13
+ - **<a href="#des"> <u>Dataset Description</u>**</a>
14
+ - **<a href="#str"> <u>Dataset Structure</u>**</a>
15
+ - **<a href="#dow"> <u>Dataset Downloads</u>**</a>
16
+
17
+ ## <a id="des">Dataset Description</a>
18
+ We collect data in 12 distinct scenarios, named `'A','B','C',...'L`'. Each scenario may include the interaction of two or three cameras on different cars. For example, scene A includes two sequences of `A-I` and `A-II`. There are 32 sequences in total.
19
+
20
+ ### <a id="str">Dataset Structure</a>
21
+ ```
22
+ MMCT
23
+ β”œβ”€β”€ data
24
+ β”‚ β”œβ”€β”€ gps
25
+ β”‚ └── labelS
26
+ └── images
27
+ β”œβ”€β”€ 1
28
+ β”‚ β”œβ”€β”€ A
29
+ β”‚ β”‚ β”œβ”€β”€ IMG_0098-frag-s1-a-fps5.mp4
30
+ β”‚ β”‚ └── jpg
31
+ β”‚ └── C
32
+ β”‚ β”œβ”€β”€ IMG_0559-frag-s1-c-fps5.mp4
33
+ β”‚ β”œβ”€β”€ jpg
34
+ β”œβ”€β”€ 2
35
+ β”‚ β”œβ”€β”€ A
36
+ β”‚ β”‚ β”œβ”€β”€ IMG_0094-frag-s2-a-fps5.mp4
37
+ β”‚ β”‚ β”œβ”€β”€ jpg
38
+ β”‚ β”œβ”€β”€ B
39
+ β”‚ β”‚ β”œβ”€β”€ IMG_2248-frag-s2-b-fps5.mp4
40
+ β”‚ β”‚ β”œβ”€β”€ jpg
41
+ ...
42
+ β”œβ”€β”€ 12
43
+ β”‚ β”œβ”€β”€ A
44
+ β”‚ β”‚ β”œβ”€β”€ IMG_0104-frag-s12-a-fps5.mp4
45
+ β”‚ β”‚ β”œβ”€β”€ jpg
46
+ β”‚ β”œβ”€β”€ B
47
+ β”‚ β”‚ β”œβ”€β”€ IMG_2254-frag-s12-b-fps5.mp4
48
+ β”‚ β”‚ β”œβ”€β”€ jpg
49
+ β”‚ └── C
50
+ β”‚ β”œβ”€β”€ IMG_0569-frag-s12-c-fps5.mp4
51
+ β”‚ β”œβ”€β”€ jpg
52
+ ```
53
+
54
+ ### <a id="dow">Dataset Downloads</a>
55
+ The whole dataset can be downloaded from [Baidu disk](https://huggingface.co/datasets/syhao777/DIVOTrack). **Note that, you can obtain the dataset after sending us (2212534@mail.dhu.edu.cn, ytzhang@dhu.edu.cn) the License in any format.**
56
+
57
+ ## <a id="con">Contact</a>
58
+ If you have any concerns, please contact [2212534@mail.dhu.edu.cnn](2212534@mail.dhu.edu.cn)
59
+
60
+