Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,19 +1,60 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
dataset_size: 33860262
|
| 14 |
configs:
|
| 15 |
-
- config_name: default
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
pretty_name: DAVIS-S
|
| 4 |
+
task_categories:
|
| 5 |
+
- image-segmentation
|
| 6 |
+
tags:
|
| 7 |
+
- saliency
|
| 8 |
+
- salient-object-detection
|
| 9 |
+
- segmentation
|
| 10 |
+
- high-resolution
|
| 11 |
+
size_categories:
|
| 12 |
+
- n<1K
|
|
|
|
| 13 |
configs:
|
| 14 |
+
- config_name: default
|
| 15 |
+
data_files:
|
| 16 |
+
- split: test
|
| 17 |
+
path: data/test-*
|
| 18 |
---
|
| 19 |
+
|
| 20 |
+
# DAVIS-S
|
| 21 |
+
|
| 22 |
+
DAVIS-S is a high-resolution salient object detection (SOD) evaluation set,
|
| 23 |
+
released alongside the **HRSOD** (High-Resolution Salient Object Detection)
|
| 24 |
+
paper. It is a saliency-annotated subset of the **DAVIS** video object
|
| 25 |
+
segmentation dataset, curated to benchmark high-resolution salient object
|
| 26 |
+
detection methods. Images are full-HD (1920x1080) with pixel-accurate
|
| 27 |
+
binary ground-truth saliency masks.
|
| 28 |
+
|
| 29 |
+
## Dataset structure
|
| 30 |
+
|
| 31 |
+
- **Split:** `test` (single evaluation set), 92 image/mask pairs.
|
| 32 |
+
- **Columns:**
|
| 33 |
+
- `image`: the RGB source image (`datasets.Image`).
|
| 34 |
+
- `mask`: the grayscale ground-truth saliency mask (`datasets.Image`).
|
| 35 |
+
|
| 36 |
+
## Usage
|
| 37 |
+
|
| 38 |
+
```python
|
| 39 |
+
from datasets import load_dataset
|
| 40 |
+
|
| 41 |
+
ds = load_dataset("nobg/DAVIS-S", split="test")
|
| 42 |
+
ex = ds[0]
|
| 43 |
+
ex["image"] # PIL.Image, RGB, 1920x1080
|
| 44 |
+
ex["mask"] # PIL.Image, L (grayscale) saliency mask
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
## Source & credits
|
| 48 |
+
|
| 49 |
+
- **DAVIS dataset** — the underlying images originate from the DAVIS
|
| 50 |
+
(Densely Annotated VIdeo Segmentation) benchmark.
|
| 51 |
+
- **HRSOD authors** — the high-resolution saliency subset and ground-truth
|
| 52 |
+
masks were released as part of the HRSOD project
|
| 53 |
+
([yi94code/HRSOD](https://github.com/yi94code/HRSOD)).
|
| 54 |
+
|
| 55 |
+
Please cite the DAVIS and HRSOD works if you use this dataset.
|
| 56 |
+
|
| 57 |
+
## License
|
| 58 |
+
|
| 59 |
+
Released under **CC BY-NC 4.0** (non-commercial research use), consistent
|
| 60 |
+
with the DAVIS dataset licensing.
|