Jour commited on
Commit
3da4b24
·
verified ·
1 Parent(s): 68d3599

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +72 -28
README.md CHANGED
@@ -1,28 +1,72 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: mask
7
- dtype: image
8
- splits:
9
- - name: train
10
- num_bytes: 937662970
11
- num_examples: 231
12
- download_size: 919821617
13
- dataset_size: 937662970
14
- configs:
15
- - config_name: default
16
- data_files:
17
- - split: train
18
- path: data/train-*
19
- license: ms-pl
20
- task_categories:
21
- - mask-generation
22
- tags:
23
- - street
24
- - view
25
- - street-view
26
- - '360'
27
- pretty_name: 360 streets view with mask
28
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: image
5
+ dtype: image
6
+ - name: mask
7
+ dtype: image
8
+ splits:
9
+ - name: train
10
+ num_bytes: 937662970
11
+ num_examples: 231
12
+ download_size: 919821617
13
+ dataset_size: 937662970
14
+ configs:
15
+ - config_name: default
16
+ data_files:
17
+ - split: train
18
+ path: data/train-*
19
+ license: ms-pl
20
+ task_categories:
21
+ - mask-generation
22
+ tags:
23
+ - street
24
+ - view
25
+ - street-view
26
+ - '360'
27
+ pretty_name: 360° streets view with mask
28
+ ---
29
+ # 📷 360 Clean Dataset
30
+
31
+ A dataset of **360° equirectangular images** with corresponding **binary masks** that hide the typical artifacts introduced by 360° capture, such as:
32
+
33
+ * 🚗 Vehicles (cars, bikes, etc.),
34
+ * 🧍‍♂️ The person capturing the video (cyclist, pedestrian, etc.),
35
+ * 🎥 Camera equipment or shadows appearing at the bottom of the image.
36
+
37
+ ## 🧾 Description
38
+
39
+ Each sample in the dataset contains:
40
+
41
+ * `image`: the original 360° equirectangular image (2:1 aspect ratio, typically 3040×1520),
42
+ * `mask`: a binary mask of the same resolution, where white pixels (`255`) indicate areas to ignore (e.g. person, vehicle), and black pixels (`0`) represent the usable background.
43
+
44
+ The masks were **manually created**.
45
+
46
+ This dataset is particularly useful for:
47
+
48
+ * 🗺️ 3D reconstruction tasks (e.g. NeRF, Gaussian Splatting),
49
+ * 🤖 Training vision models without human-related artifacts,
50
+ * 📍 Visual geolocation from clean, unobstructed environments.
51
+
52
+ ## 📁 Data Format
53
+
54
+ ```python
55
+ {
56
+ "image": Image, # equirectangular 360° scene
57
+ "mask": Image # binary mask: 1 = ignore, 0 = keep
58
+ }
59
+ ```
60
+
61
+ Files are matched by filename: `xxx.jpg` and `xxx_mask.png`.
62
+
63
+ ## 🏷️ Possible Use Cases
64
+
65
+ * **Object removal / Inpainting**
66
+ * **Semantic Segmentation**
67
+ * **Dynamic object filtering**
68
+ * **Preprocessing for 3D or geospatial vision tasks**
69
+
70
+ ## 🪪 License
71
+
72
+ This dataset is released under the **MIT**.