DETR vs Grounding DINO
Compare DETR and Grounding DINO side-by-side.
Compare DETR vs Grounding DINO live
Run the same image across every model that supports a task and compare their outputs side-by-side.
These models don't share enough common tasks for a side-by-side demo. See the comparison table below for their capabilities.
Models in this comparison
DETR vs Grounding DINO Comparison Table
Evals updated July 10, 2026Pricing updated July 21, 2026
| Property | DETR | Grounding DINO |
|---|---|---|
| Organization | Meta | IDEA Research |
| Category | open | open |
| Modality | vision | vision |
| Release Date | May 2020 | Mar 2023 |
| Context Window | — | — |
| Parameters | ~41M | 172M-341M |
| License | Apache 2.0 | Apache 2.0 |
| Vision Tasks | ||
| Object Detection | ||
| Model Features | ||
| Foundation Vision | ||
| Zero-shot Detection | ||
DETR vs Grounding DINO: Overview
DETR (Detection Transformer) is an end-to-end object detection model developed by Facebook Research (Meta), released in May 2020. It is one of the first models to eliminate hand-crafted components such as anchor generation and non-maximum suppression by framing object detection as a direct set prediction problem, solved with a transformer encoder-decoder architecture built on top of a CNN backbone.
DETR achieves 42.0% AP on the COCO benchmark with a ResNet-50 backbone, performing comparably to a well-tuned Faster R-CNN at the time of release. Its attention-based design allows it to reason about global context and long-range dependencies within an image. DETR is primarily used as a research baseline and architectural reference, with subsequent works such as Deformable DETR and DINO building on its foundations to address its slower training convergence and limited small-object detection capability.
Grounding DINO is an open-vocabulary object detection model developed by IDEA Research, released in March 2023 under the Apache 2.0 license. It extends the DINO transformer-based detector with grounded pre-training, enabling it to detect arbitrary objects described by free-form text queries rather than a fixed set of predefined categories. The model integrates a text encoder with a visual backbone through a feature fusion module that aligns language and visual representations at multiple scales.
Grounding DINO achieves strong zero-shot detection performance on COCO, LVIS, and ODinW benchmarks, and supports referring expression comprehension tasks. It is widely used as a foundation for open-vocabulary detection pipelines and as the detection backbone in systems such as Grounded-SAM. The model is particularly suited for applications requiring flexible, text-driven object localization across diverse domains.