Datasets:
Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html>
<h"... is not valid JSON
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
DAVIS-S
DAVIS-S is a high-resolution salient object detection (SOD) evaluation set, released alongside the HRSOD (High-Resolution Salient Object Detection) paper. It is a saliency-annotated subset of the DAVIS video object segmentation dataset, curated to benchmark high-resolution salient object detection methods. Images are full-HD (1920x1080) with pixel-accurate binary ground-truth saliency masks.
Dataset structure
- Split:
test(single evaluation set), 92 image/mask pairs. - Columns:
image: the RGB source image (datasets.Image).mask: the grayscale ground-truth saliency mask (datasets.Image).
Usage
from datasets import load_dataset
ds = load_dataset("nobg/DAVIS-S", split="test")
ex = ds[0]
ex["image"] # PIL.Image, RGB, 1920x1080
ex["mask"] # PIL.Image, L (grayscale) saliency mask
Source & credits
- DAVIS dataset — the underlying images originate from the DAVIS (Densely Annotated VIdeo Segmentation) benchmark.
- HRSOD authors — the high-resolution saliency subset and ground-truth masks were released as part of the HRSOD project (yi94code/HRSOD).
Please cite the DAVIS and HRSOD works if you use this dataset.
License
Released under CC BY-NC 4.0 (non-commercial research use), consistent with the DAVIS dataset licensing.
- Downloads last month
- 9