菜单

关于 🐙 GitHub
arXiv 提交日期: 2026-05-06
📄 Abstract - Example-Based Object Detection

In recent years, object detection has achieved significant progress, especially in the field of open-vocabulary object detection. Unlike traditional methods that rely on predefined categories, open-vocabulary approaches can detect arbitrary objects based on human-provided prompts. With the advancement of prompt-based detection techniques, models such as SAM3 can even outperform some category-specific detectors trained on particular datasets without requiring additional training on those datasets. However, despite these advancements, false positives and false negatives still occur. In practical engineering applications, persistent misdetections or missed detections of the same object are unacceptable. Yet retraining the model every time such errors occur incurs substantial costs in terms of human effort, computational resources, and time. Therefore, how to leverage existing false positive and false negative samples to prevent such errors from recurring remains a highly challenging and urgent problem. To address this issue, we propose EBOD (Example-Based Object Detection), which integrates a prompt-based detector (SAM3) with robust feature matching modules (DINOv3 and LightGlue). The proposed framework effectively suppresses the repeated occurrence of false positives and false negatives by leveraging previous error examples, without requiring additional model retraining. Code is available at this https URL.

顶级标签: computer vision model evaluation
详细标签: object detection open-vocabulary false positive false negative example-based 或 搜索:

基于示例的目标检测 / Example-Based Object Detection


1️⃣ 一句话总结

本文提出了一种名为EBOD的新方法,通过结合现有先进的目标检测模型和特征匹配技术,在无需重新训练模型的情况下,利用之前的错误检测样例来防止相同错误再次发生,从而提升了目标检测的可靠性。

源自 arXiv: 2605.04501