企业级安全防护: 符合 ISO 27001 + SOC 2 Type I 标准。

Link to this sectioniBims-1 深度数据集#

iBims-1(独立基准图像与匹配扫描)是一个用于单目深度估计的高质量室内基准测试集。它将 RGB 图像与测量级激光扫描仪生成的真值配对,旨在测试清晰的深度边缘和平坦表面。

Link to this section主要特性#

  • 使用测量级激光扫描仪捕获的高质量深度真值。
  • 涵盖真实的 室内 场景。
  • 深度范围最高约 10 米。
  • 评估在 100 张图像上进行。
  • 专门设计用于评估清晰的深度边缘和平坦表面的质量。

Link to this section在 YOLO26-Depth 中的角色#

iBims-1 是 YOLO26-Depth 系列的 零样本评估基准;已发布的模型均未在其上进行过训练。它对深度不连续性和平面区域的关注,使其成为超越聚合准确率的深度图质量精准测试。

评估使用多尺度和水平翻转测试时增强 (TTA),并在计算指标前对预测深度图与真实深度图进行对数最小二乘法尺度对齐。

Link to this section结果#

下表报告了各模型规模在 iBims-1 评估图像上的 delta1 准确率(像素落在 1.25 倍阈值内的百分比,数值越高越好)。

模型delta1
YOLO26n-depth0.923
YOLO26s-depth0.899
YOLO26m-depth0.953
YOLO26l-depth0.952
YOLO26x-depth0.961

Link to this section评估#

iBims-1 未随附数据集 YAML 文件。它通过一个专门的评估脚本进行评估,该脚本会加载 iBims-1 图像和激光扫描仪深度真值,应用标准的 TTA 和对数最小二乘法尺度对齐,并报告深度指标。

Link to this section用法#

iBims-1 是一个外部基准测试集,因此通常使用 predict 模式在其图像上运行模型。关于可用参数的完整列表,请参考模型 预测 页面。

预测示例
from ultralytics import YOLO

# Load a model
model = YOLO("yolo26x-depth.pt")  # load a pretrained depth model

# Predict depth on iBims-1 images
results = model.predict("path/to/ibims1/images")

Link to this section预训练模型#

YOLO26 深度系列在 iBims-1 基准测试集上进行零样本评估。这些模型会自动从最新的 Ultralytics 发布版本下载,例如来自 v8.4.0 的 YOLO26x-depth,并涵盖了多种规模(yolo26n/s/m/l/x-depth),以满足不同的准确率和资源需求。

Link to this section引用与致谢#

如果你在研究或开发工作中使用了 iBims-1 数据集,请引用以下论文:

引用
@inproceedings{koch2018ibims,
      title={Evaluation of CNN-based Single-Image Depth Estimation Methods},
      author={Koch, Tobias and Liebel, Lukas and Fraundorfer, Friedrich and K{\"o}rner, Marco},
      booktitle={Proceedings of the European Conference on Computer Vision (ECCV) Workshops},
      year={2018}
}

我们要感谢作者为计算机视觉社区创建并维护了这一宝贵资源。

贡献者

评论