Segment Anything with Concepts
Meta AI Research Team
Read the Paper on arXivSAM 3 (Segment Anything Model 3) is Meta's latest foundation model for detection, segmentation, and tracking of objects in images and videos using concept prompts — text descriptions, visual exemplars, or both. It represents a fundamental leap from SAM 1's click-based prompting and SAM 2's video memory architecture.
Architectural lineage and what changed:
SAM 1 (2023) introduced the "segment anything" paradigm with a three-component architecture: a ViT-H image encoder (632M params, processing 1024x1024 inputs into 64x64x256 embeddings), a prompt encoder handling points/boxes/masks/text, and a lightweight 2-layer Transformer mask decoder producing 3 ambiguity-aware masks with confidence scores. It was trained on SA-1B (11M images, 1.1B masks) using a three-phase data engine (assisted, semi-automatic, fully automatic annotation). SAM 2 (2024) extended this with streaming memory for video — a memory encoder, memory bank, and memory attention module enabling temporal propagation across frames.
SAM 3 (2025) introduces a fundamentally new ability: open-vocabulary concept segmentation. Rather than clicking individual objects, you describe a concept ("person in red shirt") and SAM 3 finds and segments every instance across images or videos. This required rethinking the entire architecture:
Key advances:
SAM 3 achieves 2x performance gain over existing systems on the Promptable Concept Segmentation benchmark while maintaining SAM 2's real-time video tracking capabilities. The decoupled architecture scales as O(objects) in memory rather than O(frames x objects), enabling efficient processing of long videos with many tracked instances.
Click any topic to jump in
Vision transformer producing concept-aligned multi-scale embeddings.
Open-vocabulary text prompts replacing box/click inputs.
Global gate predicting whether the concept appears at all.
Detector and tracker trained independently to avoid gradient interference.
Composition of encoder, detector, and tracker stages.
11M concept-mask pairs gathered via human-in-the-loop data engine.
Concept-conditioned identity persistence across frames.
Upgrade to PixelBank Premium to unlock this content.