Datasets:
shawshankvkt
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,91 @@
|
|
1 |
---
|
2 |
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: cc-by-4.0
|
3 |
+
task_categories:
|
4 |
+
- image-classification
|
5 |
+
- image-to-video
|
6 |
+
language:
|
7 |
+
- en
|
8 |
+
tags:
|
9 |
+
- self-supervised learning
|
10 |
+
- representation learning
|
11 |
+
pretty_name: Walking_Tours
|
12 |
+
size_categories:
|
13 |
+
- n<1K
|
14 |
---
|
15 |
+
# Walking Tours Dataset
|
16 |
+
|
17 |
+
## Overview
|
18 |
+
|
19 |
+
We introduce the Walking Tours dataset (WTours), a unique collection of long-range egocentric videos captured in an urban setting from various cities in Europe and Asia. It consists of 10 high-resolution videos, each showcasing a person walking through different urban environments, ranging from city centers to parks to residential areas under different lighting conditions. Additionally, a video from a Wildlife safari is included to diversify the dataset.
|
20 |
+
|
21 |
+
## Cities Covered
|
22 |
+
|
23 |
+
The dataset encompasses walks through the following cities:
|
24 |
+
|
25 |
+
- Amsterdam
|
26 |
+
- Bangkok
|
27 |
+
- Chiang Mai
|
28 |
+
- Istanbul
|
29 |
+
- Kuala Lumpur
|
30 |
+
- Singapore
|
31 |
+
- Stockholm
|
32 |
+
- Venice
|
33 |
+
- Zurich
|
34 |
+
|
35 |
+
![](path/to/Example_Gif_1.gif) ![](path/to/Example_Gif_1.gif) ![](path/to/Example_Gif_1.gif)
|
36 |
+
|
37 |
+
## Video Specifications
|
38 |
+
|
39 |
+
- **Resolution:** 4K (3840 × 2160 pixels)
|
40 |
+
- **Frame Rate:** 60 frames-per-second
|
41 |
+
- **License:** Creative Commons License (CC-BY)
|
42 |
+
|
43 |
+
## Duration
|
44 |
+
|
45 |
+
The videos vary in duration, offering a diverse range of content:
|
46 |
+
|
47 |
+
- Minimum Duration: 59 minutes (Wildlife safari)
|
48 |
+
- Maximum Duration: 2 hours 55 minutes (Bangkok)
|
49 |
+
- Average Duration: 1 hour 38 minutes
|
50 |
+
|
51 |
+
|
52 |
+
## Usage
|
53 |
+
|
54 |
+
The complete list of WTour videos are available in ```WTour.txt``` with YouTube link and the corresponding city.
|
55 |
+
|
56 |
+
To download the dataset, we first install **pytube**
|
57 |
+
```
|
58 |
+
pip install pytube
|
59 |
+
```
|
60 |
+
|
61 |
+
then, we run
|
62 |
+
```
|
63 |
+
python download_WTours.py --output_folder <path_to_folder>
|
64 |
+
```
|
65 |
+
|
66 |
+
In order to comply with [GDPR](https://gdpr.eu/what-is-gdpr/), we also try to blur out all faces and license plates appearing in the video using [Deface](https://github.com/ORB-HD/deface)
|
67 |
+
|
68 |
+
To do this for all videos in WTour dataset:
|
69 |
+
```
|
70 |
+
python3 -m pip install deface
|
71 |
+
```
|
72 |
+
Then run Deface on all videos using the bash script:
|
73 |
+
```
|
74 |
+
chmod a+x gdpr_blur_faces.sh
|
75 |
+
./gdpr_blur_faces.sh
|
76 |
+
```
|
77 |
+
|
78 |
+
|
79 |
+
## Citation
|
80 |
+
|
81 |
+
If you find this work useful and use it on your own research, please cite our paper:
|
82 |
+
|
83 |
+
```
|
84 |
+
@inproceedings{venkataramanan2023imagenet,
|
85 |
+
title={Is ImageNet worth 1 video? Learning strong image encoders from 1 long unlabelled video},
|
86 |
+
author={Venkataramanan, Shashanka and Rizve, Mamshad Nayeem and Carreira, Jo{\~a}o and Asano, Yuki M and Avrithis, Yannis},
|
87 |
+
booktitle={International Conference on Learning Representations},
|
88 |
+
year={2024}
|
89 |
+
}
|
90 |
+
```
|
91 |
+
---
|