Datasets:

ArXiv:
danier97 commited on
Commit
8f007e5
·
verified ·
1 Parent(s): 367ee44

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +72 -2
README.md CHANGED
@@ -1,4 +1,74 @@
1
  ---
2
- license: mit
3
  ---
4
- # coming soon
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ {}
3
  ---
4
+
5
+ # Overview
6
+
7
+ [Project page](https://danier97.github.io/depthcues/) | [Paper](https://arxiv.org/abs/2411.17385) | [Code](https://github.com/danier97/depthcues)
8
+
9
+ This repo contains datasets involved in the [*DepthCues*](https://danier97.github.io/depthcues/) in `.zip` format. There is one zip file for the subset corresponding to each of the six depth cues: elevation, light-shadow, occlusion, perspective, size, and texture-grad. While five zip files contain all the images and annotations needed for benchmarking, one contain only *DepthCues* annotations, and for that the images need to be downloaded from the original official sources.
10
+
11
+ We provide the code for evaluating models on *DepthCues* [here](https://github.com/danier97/depthcues).
12
+
13
+
14
+ # Download *DepthCues*
15
+ First download the six zip files in this repository that correspond to the six subsets for six depth cues, then unzip them.
16
+
17
+ For **Perspective** please download the images from the [project page](https://zihan-z.github.io/projects/vpdetection/) of the original paper. Then move the two folders `ava/` and `flickr/` to `perspective_v1/images/`
18
+ ```
19
+ mv path/to/source/dataset/ava path/to/source/dataset/flickr path/to/perspective_v1/images/
20
+ ```
21
+ After downloading and unzipping everything, the dataset directories should look like:
22
+ ```
23
+ <your data dir>/
24
+ └── elevation_v1/
25
+ └── images/
26
+ └── train_data.pkl
27
+ └── val_data.pkl
28
+ └── test_data.pkl
29
+ └── lightshadow_v1/
30
+ └── images/
31
+ └── train_annotations.pkl
32
+ └── val_annotations.pkl
33
+ └── test_annotations.pkl
34
+ └── occlusion_v4/
35
+ └── images_BSDS/
36
+ └── images_COCO/
37
+ └── train_data.pkl
38
+ └── val_data.pkl
39
+ └── test_data.pkl
40
+ └── perspective_v1/
41
+ └── images/
42
+ └── train_val_test_split.json
43
+ └── size_v2/
44
+ └── images_indoor/
45
+ └── images_outdoor/
46
+ └── train_data_indoor.pkl
47
+ └── train_data_outdoor.pkl
48
+ └── val_data_indoor.pkl
49
+ └── val_data_outdoor.pkl
50
+ └── test_data_indoor.pkl
51
+ └── test_data_outdoor.pkl
52
+ └── texturegrad_v1/
53
+ └── images/
54
+ └── train_data.pkl
55
+ └── val_data.pkl
56
+ └── test_data.pkl
57
+ ```
58
+
59
+
60
+ # Copyright and Disclaimer
61
+ This dataset is derived from multiple source datasets, each governed by its own copyright and licensing terms. All rights and credit remain with the original copyright holders. This derivative dataset is intended for non-commercial research and educational purposes unless otherwise explicitly permitted by the original licenses. Any redistribution or derivative use of any part of this dataset must comply with the respective license terms of the original sources. This dataset is provided “as is” without warranty of any kind. The creators of this dataset expressly disclaim any liability for damages arising from its use.
62
+ By using this dataset, you agree to comply with the terms and conditions set forth by each original data source. In no event shall the creators of this dataset be liable for any misuse, infringement, or violation of the underlying copyrights.
63
+
64
+ Please review the specific terms for each component below.
65
+
66
+
67
+ | Dataset | Publication | Copyright |
68
+ |----------------|------------|-----------|
69
+ | **Elevation** | Workman, S., Zhai, M., & Jacobs, N. Horizon lines in the wild. *BMVC 2016.* | [link](https://mvrl.cse.wustl.edu/ack.html) |
70
+ | **Light-shadow** | Wang, T., Hu, X., Wang, Q., Heng, P. A., & Fu, C. W. Instance shadow detection. *CVPR 2020.* | [link](https://github.com/stevewongv/InstanceShadowDetection/blob/master/LICENSE) |
71
+ | **Occlusion** | Zhu, Y., Tian, Y., Metaxas, D., & Dollár, P. Semantic amodal segmentation. *CVPR 2017.* <br> Lin, T. Y., et al. Microsoft COCO: Common objects in context. *ECCV 2014.* <br> Arbelaez, P., et al. Contour detection and hierarchical image segmentation. *T-PAMI 2010.* | [COCO-A link](https://arxiv.org/abs/1509.01329), [COCO link](https://cocodataset.org/#termsofuse), [BSDS link](https://www2.eecs.berkeley.edu/Research/Projects/CS/vision/grouping/resources.html) |
72
+ | **Perspective** | Zhou, Z., Farhat, F., & Wang, J. Z. Detecting dominant vanishing points in natural scenes with application to composition-sensitive image retrieval. *IEEE T-MM 2017.* | [AVA link](https://arxiv.org/abs/1705.08421), [Flickr link](https://www.flickr.com/creativecommons/) |
73
+ | **Size** | Geiger, A., Lenz, P., & Urtasun, R. Are we ready for autonomous driving? The KITTI vision benchmark suite. *CVPR 2012.* <br> Song, S., Lichtenberg, S. P., & Xiao, J. SUN RGB-D: A RGB-D scene understanding benchmark suite. *CVPR 2015.* | [KITTI link](https://www.cvlibs.net/datasets/kitti/), [SUN-RGBD link](https://rgbd.cs.princeton.edu/challenge.html) |
74
+ | **Texture-grad** | Cimpoi, M., Maji, S., Kokkinos, I., Mohamed, S., & Vedaldi, A. Describing textures in the wild. *CVPR 2014.* | [link](https://www.robots.ox.ac.uk/~vgg/data/dtd/index.html) |