FudanCVL's SAM-MT Achieves Real-Time Multi-Target Video Segmentation at 36+ FPS

computer vision

The Performance Cost of Multi-Object Tracking in Video Segmentation

Modern video object segmentation (VOS) models have become remarkably effective at isolating and tracking a single user-specified target across frames. However, real-world scenarios rarely involve just one object. When the task expands to handling multiple targets simultaneously, the most common engineering approach has been brute-force replication: run the single-target model once for each object and combine the results. This naive strategy causes a linear degradation in throughput, where each additional target consumes an equal slice of the available compute budget, driving frame rates downward and latency upward without bound. For applications requiring real-time responsiveness—such as live video editing, autonomous navigation, or interactive surveillance—this scaling limitation has been a persistent bottleneck, forcing developers to choose between accuracy and speed.

How SAM-MT Decouples Latency from Target Count

video segmentation

Built directly on Segment Anything 2 (SAM2), the widely adopted vision foundation model from Meta, the newly introduced SAM-MT reimagines the multi-target segmentation pipeline as a unified interactive framework rather than a collection of independent runs. According to the project page and paper submitted to Hugging Face Daily Papers on July 10, 2026, the architecture uses explicit queries to represent each individual target in parallel with a shared representation for global context. This design allows the model to process all objects in a single forward pass, fundamentally breaking the dependency between the number of targets and computational load. The core technical contributions include decoupled masked attention, which keeps each object's identity distinct by preventing cross-target interference; a sparse memory mechanism that maintains stable temporal evolution across frames without storing redundant features; and specialized strategies for handling occlusions and preventing overlap between masks. By treating multi-target segmentation as a parallelized reasoning problem rather than a sequential one, SAM-MT ensures that latency remains constant regardless of how many objects the user specifies.

Benchmarks Show Real-Time Performance Beyond 10 Targets

The paper provides concrete performance figures that illustrate the practical advantage of this architectural shift. SAM-MT achieves more than 36 frames per second when segmenting 10 targets concurrently, matching the speed of single-target baselines. This real-time capability persists even as the target count increases, because the model's latency is effectively decoupled from the number of objects. The researchers note that while single-target methods would see their frame rates drop proportionally—potentially falling below interactive thresholds with just a handful of objects—SAM-MT maintains SAM2's robust video segmentation accuracy without compromise. This combination of high throughput and fidelity is particularly notable given that SAM2 itself was already state-of-the-art for single-target VOS; SAM-MT extends that performance envelope into previously impractical multi-object scenarios without any trade-off in output quality.

video segmentation

Industry Impact: Video Editing, Surveillance, and Autonomous Systems

The ability to segment and track multiple objects in real time on consumer-grade hardware could open doors across several industries. In post-production and visual effects, editors often need to isolate multiple moving subjects simultaneously—replacing backgrounds, applying color corrections, or compositing elements. A real-time multi-target tool could drastically reduce the time spent on frame-by-frame rotoscoping. Surveillance and analytics systems could track crowds, vehicles, and individuals without specialized sensor arrays, running multiple segmentation streams on a single GPU. In autonomous driving and robotics, platforms must continuously segment pedestrians, cyclists, other vehicles, and road infrastructure; maintaining a constant, high frame rate is critical for safety. SAM-MT's architecture, by making the segmentation task indifferent to the number of targets, aligns with the strict latency requirements of these safety-critical systems. The open-source release further lowers the barrier for experimentation, allowing startups and research labs to build on a proven framework without needing to reimplement complex multi-target logic from scratch.

Open-Source Release and the Road Ahead for SAM Extensions

The FudanCVL team has made the SAM-MT code publicly available on GitHub, along with a project page detailing the architecture and example results. The early response—three stars and one comment on the repository shortly after publication—reflects the community's interest in practical extensions of the SAM ecosystem. As foundation models like SAM2 become ubiquitous, the research community is increasingly focused on adapting them for production constraints like latency, memory footprint, and multi-object handling. SAM-MT demonstrates that minimal changes to a pre-trained model can transform its scalability profile without sacrificing performance. Looking ahead, the approach may inspire similar parallelization strategies for other video understanding tasks, such as panoptic segmentation or instance tracking, where object count has traditionally been a limiting factor. If integrated into real-world applications, this work could shift the default assumption from “one target at a time” to “all targets, all the time,” finally bringing multi-object video segmentation into the real-time era.

345tool Editorial Team
345tool Editorial Team

We are a team of AI technology enthusiasts and researchers dedicated to discovering, testing, and reviewing the latest AI tools to help users find the right solutions for their needs.

我们是一支由 AI 技术爱好者和研究人员组成的团队,致力于发现、测试和评测最新的 AI 工具,帮助用户找到最适合自己的解决方案。

Commentaires

Loading comments...