Jour commited on
Commit
68d3599
·
verified ·
1 Parent(s): 5eba155

Update README.md

Browse files

# 📷 360 Clean Dataset

A dataset of **360° equirectangular images** with corresponding **binary masks** that hide the typical artifacts introduced by 360° capture, such as:

* 🚗 Vehicles (cars, bikes, etc.),
* 🧍‍♂️ The person capturing the video (cyclist, pedestrian, etc.),
* 🎥 Camera equipment or shadows appearing at the bottom of the image.

## 🧾 Description

Each sample in the dataset contains:

* `image`: the original 360° equirectangular image (2:1 aspect ratio, typically 3040×1520),
* `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.

The masks were **manually created**.

This dataset is particularly useful for:

* 🗺️ 3D reconstruction tasks (e.g. NeRF, Gaussian Splatting),
* 🤖 Training vision models without human-related artifacts,
* 📍 Visual geolocation from clean, unobstructed environments.

## 📁 Data Format

```python
{
"image": Image, # equirectangular 360° scene
"mask": Image # binary mask: 1 = ignore, 0 = keep
}
```

Files are matched by filename: `xxx.jpg` and `xxx_mask.png`.

## 🏷️ Possible Use Cases

* **Object removal / Inpainting**
* **Semantic Segmentation**
* **Dynamic object filtering**
* **Preprocessing for 3D or geospatial vision tasks**

## 🪪 License

This dataset is released under the **MIT**.

Files changed (1) hide show
  1. README.md +12 -3
README.md CHANGED
@@ -7,13 +7,22 @@ dataset_info:
7
  dtype: image
8
  splits:
9
  - name: train
10
- num_bytes: 937662970.0
11
  num_examples: 231
12
  download_size: 919821617
13
- dataset_size: 937662970.0
14
  configs:
15
  - config_name: default
16
  data_files:
17
  - split: train
18
  path: data/train-*
19
- ---
 
 
 
 
 
 
 
 
 
 
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
+ ---