MatchLab commited on
Commit
14c04a9
·
verified ·
1 Parent(s): e2f6b22

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +54 -0
README.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ pretty_name: SouthKenSV
4
+ ---
5
+
6
+ # SouthKensington Stereo Video Dataset
7
+
8
+ ## Dataset Summary
9
+ This dataset provides stereo video sequences, captured using a ZED2 camera, designed for research in stereo video matching.
10
+
11
+ ## Dataset Structure
12
+ The folder stucture of the datasets should look like:
13
+
14
+ ```none
15
+ /data/datasets/
16
+ ├── SouthKensington
17
+ ├── indoor
18
+ ├── video001
19
+ ├── ...
20
+ ├── images
21
+ ├── left
22
+ ├── left000000.png
23
+ ├── left000001.png
24
+ ├── right
25
+ ├── right000000.png
26
+ ├── right000001.png
27
+ ├── tracking_data1.txt
28
+ ├── outdoor
29
+ ├── video001
30
+ ├── ...
31
+ ```
32
+
33
+ ### Data Instances
34
+ <Describe what a single data example looks like. E.g.:>
35
+ Each instance includes:
36
+ - `left`: RGB image (720x1280x3)
37
+ - `right`: RGB image (720x1280x3)
38
+ - `tracking_data`: Intrinsics and Extrinsics
39
+
40
+
41
+ ### License
42
+ The code is under MIT license.
43
+
44
+ SouthKensington SV dataset is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International ([CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode)).
45
+ Under this license, if you want to modify SK-SV or generate new data from SK-SV dataset (e.g., super-resolution, denoising, defocus), the releasing of your new data should be licensed under the same CC BY-NC-SA 4.0.
46
+
47
+ ## Citation Information
48
+ ```
49
+ @article{jing2024match,
50
+ title={Match Stereo Videos via Bidirectional Alignment},
51
+ author={Junpeng Jing and Ye Mao and Anlan Qiu and Krystian Mikolajczyk},
52
+ year={2024}
53
+ }
54
+ ```