TLDR: SaSaSa2VA is a novel method for referring video object segmentation (RVOS) that significantly improves upon previous models. It addresses limitations like sparse frame sampling and single segmentation tokens by introducing “Segmentation Augmentation” (Key Frame Compression and Scaling SEG tokens) and “Test-time Augmentation” (multiple sampling strategies and Selective Averaging). This approach achieved first place in the 7th LSVOS Challenge RVOS track with a J&F score of 67.45, demonstrating enhanced accuracy and efficiency in segmenting and tracking objects in videos based on natural language descriptions.
In the rapidly evolving field of artificial intelligence, understanding and interacting with video content is a significant challenge. One particularly complex area is Referring Video Object Segmentation (RVOS), which involves identifying and tracking specific objects within a video based on a natural language description. Imagine telling an AI, “Segment the red car that turns left,” and having it precisely outline and follow that car throughout the video. This task demands a deep understanding of both visual appearance and motion.
Recently, a team from Wuhan University, University of California, Merced, and Nanyang Technological University introduced a groundbreaking solution called SaSaSa2VA. This method secured first place in the RVOS track of the 7th Large-scale Video Object Segmentation (LSVOS) Challenge at ICCV 2025, significantly outperforming its competitors.
The Challenge of RVOS
RVOS is inherently difficult because it requires AI models to not only see objects but also to comprehend linguistic nuances related to their actions and characteristics over time. Existing models, such as the Sa2VA baseline, which combines a Multi-modal Large Language Model (MLLM) with the SAM2 video segmentation model, faced two primary limitations. Firstly, they used sparse frame sampling, meaning they only looked at a few frames from a video, which limited their ability to grasp the overall context and motion. Secondly, they relied on a single ‘segmentation token’ to represent an entire video, making it hard to adapt to changes in an object’s position, shape, or even its appearance and disappearance over time.
SaSaSa2VA’s Innovative Solutions
To overcome these hurdles, SaSaSa2VA introduces two main enhancements: Segmentation Augmentation and Test-time Augmentation.
Segmentation Augmentation
This strategy focuses on improving how the MLLM processes video information. It includes:
- Key Frame Compression (KFC): Instead of sampling just a few frames, SaSaSa2VA samples more frames and organizes them into non-overlapping clips. For each clip, it identifies a ‘key frame’ and then compresses the remaining frames into a single ‘compressed image’. This clever technique allows the MLLM to receive more global video information without being overwhelmed by redundant data from adjacent frames.
- Scaling Segmentation Tokens: To better handle the dynamic nature of objects in videos, SaSaSa2VA assigns a separate segmentation token to each video clip. This means the MLLM generates multiple tokens per video, each responsible for decoding masks within its specific clip. This approach significantly enhances the model’s ability to track temporal variations.
Test-time Augmentation
During the inference phase (when the model is making predictions), SaSaSa2VA employs a sophisticated ensemble method to maximize accuracy. This involves:
- Diverse Inference Sampling Strategies: The model uses five different ways to sample frames from a video, each with its own strengths. These include uniform sampling, a uniform strategy with boundary averaging, a query-aware frame selection method, and two ‘wrap-around’ strategies for handling videos of varying lengths.
- Selective Averaging: Recognizing that different sampling strategies and model scales perform better on different videos, SaSaSa2VA combines their predictions using a ‘selective averaging’ scheme. This method weights and averages the results from various models and sampling techniques, leading to a more robust and accurate final segmentation mask.
Also Read:
- A Unified Framework for Size-Invariant Salient Object Detection
- See&Trek: Boosting AI’s Spatial Awareness Without Extensive Training
Achieving Top Performance
The effectiveness of SaSaSa2VA was clearly demonstrated at the 7th LSVOS Challenge. The method achieved an impressive J&F score of 67.45, securing the top rank and surpassing the runner-up by a notable 2.80 points. Ablation studies further confirmed that both Segmentation Augmentation and Selective Averaging contribute significantly to these performance gains.
The success of SaSaSa2VA highlights the immense potential of combining advanced MLLMs with sophisticated video segmentation techniques. By addressing critical bottlenecks in temporal coverage and segmentation prompting, this research paves the way for more accurate and efficient video understanding systems. The code for SaSaSa2VA is publicly available in the Sa2VA repository, encouraging further research and development in this exciting field. You can read the full research paper here: SaSaSa2VA Research Paper.


