DETR vs Mask R-CNN
Compare DETR and Mask R-CNN side-by-side.
Compare DETR vs Mask R-CNN 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 Mask R-CNN Comparison Table
Evals updated September 5, 2026Pricing updated September 21, 2026
| Property | DETR | Mask R-CNN |
|---|---|---|
| Organization | Meta | Meta |
| Category | open | open |
| Modality | vision | vision |
| Release Date | May 2020 | Oct 2017 |
| Context Window | — | — |
| Parameters | ~41M | 44.4M |
| License | Apache 2.0 | MIT |
| Vision Tasks | ||
| Object Detection | ||
| Instance Segmentation | ||
| Keypoint Detection | ||
| Model Features | ||
| Foundation Vision | ||
DETR vs Mask R-CNN: 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.
Mask R-CNN is an instance segmentation model developed by Facebook AI Research (Meta), released in October 2017. It extends Faster R-CNN by adding a parallel branch that predicts binary segmentation masks for each detected object, independent of the classification and bounding box regression branches. A key contribution is RoIAlign, which replaces RoIPool with bilinear interpolation to preserve spatial correspondence between features and input pixels, significantly improving mask quality.
Mask R-CNN achieves strong performance on the COCO instance segmentation benchmark and supports keypoint detection as an additional output head. It remains a foundational architecture in instance segmentation and is available through Meta's Detectron2 framework. The model is most appropriate for tasks requiring pixel-level object delineation, such as medical imaging, autonomous driving, and industrial inspection.