O3-D
收藏资源简介:
O3-D (Odd-One-Out Depth) 是一个多模态视觉数据集,核心特点是包含受控的单目/图像深度线索。该数据集结合了“找不同”任务和深度排序任务,专门用于分析和评估视觉语言模型(VLMs)的指代表达理解能力和基础深度感知能力。数据集包括4个合成图像子集和3个真实世界图像子集,总计提供超过1000个具有不同指代清晰度级别的独特视觉问题。所有合成图像均提供对应的深度图,同时所有图像都附带了目标物体和干扰物的分割掩码。这些丰富的标注信息(如深度图和分割掩码)使数据集可广泛用于单目深度估计和显著目标检测等通用计算机视觉任务。数据集根据深度线索的受控程度和类型进行了子集划分,包括零线索基线、单线索、双线索、线性透视测试子集以及用于验证的真实世界子集。数据集采用 CC-BY-4.0 许可证发布。
O3-D (Odd-One-Out Depth) is a multimodal vision dataset characterized by controlled monocular/image depth cues. It combines the odd-one-out task with depth ordering tasks, specifically designed to analyze and evaluate the referential expression understanding and basic depth perception capabilities of vision-language models (VLMs). The dataset consists of 4 synthetic image subsets and 3 real-world image subsets, providing over 1000 unique visual questions with varying levels of referential clarity. All synthetic images come with corresponding depth maps, and all images include segmentation masks for target objects and distractors. These rich annotations (including depth maps and segmentation masks) also make the dataset widely applicable to general computer vision tasks such as monocular depth estimation and salient object detection. The dataset is divided into subsets based on the degree and type of depth cue control, including zero-cue baseline, single-cue, double-cue, linear perspective test subsets, and real-world subsets for validation. It is released under the CC-BY-4.0 license.
数据集概述
数据集名称:Odd-One-Out Depth (O3-D)
许可协议:Creative Commons Attribution 4.0 International (CC-BY 4.0)
任务类别:视觉问答、深度估计
语言:英语
数据规模:10K < n < 100K
GitHub 仓库:https://github.com/lyiqian/o3-d
数据集简介
O3-D 是一个多模态数据集,专注于受控的单眼/图像深度线索。该数据集结合了“找出异类”(Odd-One-Out)与“深度排序”任务,旨在分析视觉语言模型(VLM)的指代表达理解能力和基础深度感知能力。数据集还提供了深度图和分割掩码,可用于单目深度估计、显著目标检测等通用任务。
数据集子集构成
O3-D 包含 4 个合成图像子集 和 3 个真实世界图像子集:
| 配置名称 | 类型 | 说明 |
|---|---|---|
kb-0cue |
合成 | 零线索(负基线) |
kb-1cue |
合成 | 单一受控线索 |
kb-2cue |
合成 | 两种受控线索 |
kb-no-lp |
合成 | 小样本子集,用于测试线性透视(LP)线索 |
real-012cue |
真实 | 受控线索,用于验证 |
real-012cue-cropped |
真实 | 裁剪后的子集,专门用于深度排序任务 |
real-mcue |
真实 | 非受控线索 |
visual_questions |
- | 视觉问答子集 |
数据特征
各子集特征大致相同,包含:
image_name:图像名称(字符串)env_cat/env_id:环境类别与IDobj_cat/obj_id:目标物体类别与IDodd_position:异类物体位置cues:线索类型cue_strength:线索强度(部分子集为null)depth_scale:深度尺度image:RGB图像depth_map:深度图(仅合成子集)targ_seg/dist_seg:目标与干扰物的分割掩码augmented_image/marked_image:增强或标注图像(部分真实子集)- 深度相关特征:
targ_min_depth,targ_med_depth,targ_max_depth,dist_min_depth,dist_med_depth,dist_max_depth,med_depth_diff(仅real-mcue) - 视觉问答特征:
question,ques_clarity,icl,cot(仅visual_questions)
数据集规模
| 子集 | 训练样本数 | 总大小 |
|---|---|---|
| kb-0cue | 1,443 | ~1.23 GB |
| kb-1cue | 13,598 | ~17.41 GB |
| kb-2cue | 21,112 | ~21.28 GB |
| kb-no-lp | 592 | ~809 MB |
| real-012cue | 97 | ~347 MB |
| real-012cue-cropped | 97 | ~83 MB |
| real-mcue | 171 | ~114 MB |
| visual_questions | 147,552 | ~28 MB |
受控图像线索(Glossary)
- OC:遮挡(Occlusion)
- LS:光影(Light and Shadow)
- TG:纹理梯度(Texture Gradient)
- LP:线性透视(Linear Perspective)
- HP:平面高度(Height-in-Plane)
- RS:相对大小(Relative Size)
- FS:熟悉大小(Familiar Size)
- SA:饱和度(Saturation)
- FO:聚焦程度(Focusness)
数据加载示例
python from datasets import load_dataset
加载特定子集
dataset = load_dataset("liuyiqian/O3-D", "kb-1cue")
访问第一个样本
sample = dataset[train][0] rgb_image = sample[image] depth_map = sample[depth_map] # 返回 PIL Image target_mask = sample[targ_seg] # 返回 PIL Image distractor_segmts = sample[dist_seg] # 返回 PIL Image
论文与引用
该数据集对应的论文已被 ECCV2026 接收(占位链接)。引用信息为占位符,请参考后续发布的正式版本。




