ID-VTG: Image-Disambiguated Video Temporal Grounding

Abstract

Video Temporal Grounding (VTG) faces significant challenges when natural language queries must distinguish between multiple events involving visually similar entities, particularly when relying on fine grained visual attributes that are difficult to describe accurately in words alone. To address this, we introduce Image-Disambiguated Video Temporal Grounding (ID-VTG), a task that leverages multi modal queries combining a reference image and a text description to precisely localize segments where a specific instance performs a described action. To facilitate research, we construct two bench marks, IDVTG-Gym, focusing on fine-grained, compositionally ordered gymnastics actions with athletes in similar uniforms; and IDVTG-InternVid, an open-world dataset featuring diverse entities (e.g., humans, animals, fictional characters) and significant temporal distractors. Methodologically, we propose the Visually Guided Disambiguation Aggregation (VGD-Agg) framework based on a dual-branch fast-slow architecture. The fast branch efficiently generates preliminary event proposals, while the slow branch performs fine-grained frame-level matching between video frames and the reference image. We enhance discriminability via two learnable tokens, a Compare Token, which represents hard negatives to probe for the presence of the target instance (as referred to by the query image), and a Depress Value, which represents text-irrelevant events. Proposals that the Compare Token identifies as lacking the target instance are pushed toward the Depress Value, thus easing disambiguation via the text query. Extensive experiments validate our approach, which achieves state-of the-art results on the proposed benchmarks. Code is available at https://github.com/oceanflowlab/ID-VTG.

🎯 Why ID-VTG?

Text-only temporal grounding cannot reliably select the intended event when multiple people or objects satisfy the same description. ID-VTG adds a reference image as an identity constraint: the text specifies what happens, while the image specifies who or what to follow.

⚠️ Text-only VTG

“The man speaks into a microphone” may match several intervals and visually similar subjects.

Failure: semantic match without instance identity.

✅ Image-disambiguated VTG

The image identifies the target instance; the text selects its requested action or ordinal occurrence.

Goal: precise temporal boundaries under hard distractors.

🧩 Task Definition

ID-VTG task overview

Figure 1. ID-VTG resolves ambiguous text queries by adding a visual reference for the target instance.

Given a video V and multimodal query Q = {Qtext, Qimg}, ID-VTG predicts Sg = (ts, te) that matches the text and contains the instance shown in the reference image. The benchmark includes text ambiguity (different instances, same action) and image ambiguity (same instance, different actions).

📚 Benchmarks

IDVTG-Gym and IDVTG-InternVid dataset overview

Figure 2. Dataset visualzations, semantic categories, and query statistics.

The figure above presents our two benchmarks: IDVTG-Gym is built from FineGym and covers holistic routines and atomic actions such as “giant circle”, with ordinal cues like “for the second time”. IDVTG-InternVid spans daily life, travel, cooking, technology, animals, objects, and fictional characters. The table below shows detailed statistics.

DatasetDomainDurationQueriesQuery typeAmbiguity
TACoSCooking10.1 h18.2KTextNo
Charades-STAActivity57.1 h16.1KTextNo
DiDeMoFlickr88.7 h41.2KTextNo
QVHighlightsVlog / News425 h10.3KTextNo
ActivityNet CaptionsActivity487.6 h72.0KTextNo
ICQ-HighlightVlog / News65 h6.19KText + ImageNo
IDVTG-Gym (ours)Gymnastics204.1 h14.7KText + ImageYes
IDVTG-InternVid (ours)Open-world302.7 h62.1KText + ImageYes
ID-VTG (total)--506.8 h76.8KText + ImageYes

🔬 VGD-Agg

As shown below, VGD-Agg models long-range temporal context with the Fast Branch, performs frame-level matching with the reference image in the Slow Branch, and suppresses visual distractors using the Compare Token and Depress Value.

VGD-Agg architecture

Figure 3. Overview of the dual-branch VGD-Agg framework.

VGD-Agg combines long-range temporal context with frame-level identity matching through a dual-branch fast-slow design.

⚡ Fast Branch

Query-agnostic multi-scale proposals capture video-wide temporal structure efficiently.

🐢 Slow Branch

Frame-level cross-modal matching compares each video frame with the reference image.

🔎 Compare Token

A video-specific hard-negative prototype; target frames score above it and distractors below it.

🧲 Depress Value

Represents text-irrelevant events and suppresses proposals that lack the target instance.

The Vision-Assisted Disambiguation module uses softmax competition between frame similarities and the Compare Token. It highlights image-relevant frames and suppresses distractors before text-guided classification and boundary regression.

📊 Main Results

🏋️ IDVTG-Gym

MethodR1@0.5R1@0.7mIoU
RaTSG18.4515.9916.96
UVCOM18.0715.0017.32
CG-DETR27.9623.3626.99
ICQ46.1242.2440.24
SnAG53.6448.8246.73
VGD-Agg (ours)61.8356.5354.17

🌍 IDVTG-InternVid

MethodR1@0.5R1@0.7mIoU
RaTSG30.5819.7130.91
UVCOM30.1118.8930.07
CG-DETR44.8131.6243.80
ICQ31.0425.3929.90
SnAG44.2635.4641.70
VGD-Agg (ours)51.2141.2448.30

VGD-Agg improves over SnAG by 7.44 mIoU on IDVTG-Gym and 6.60 mIoU on IDVTG-InternVid.

👁️ Qualitative Visualization

To illustrate how visual cues resolve ambiguity, we show qualitative results on both benchmarks below. The IDVTG-Gym example emphasizes identity discrimination among similarly dressed gymnasts, while the IDVTG-InternVid example demonstrates cross-entity and cross-scene localization in open-world videos.

Visualization on IDVTG-Gym

Figure 4. Visual examples on IDVTG-Gym: the reference image helps select the correct gymnast and action occurrence.

Visualization on IDVTG-InternVid

Figure 5. Visual examples on IDVTG-InternVid: VGD-Agg suppresses temporally similar distractors and localizes the target instance.

📝 Citation

@InProceedings{Zheng_2026_MM,
  author    = {Zheng, Minghang and Wei, Jingli and Yang, Hongyi and Liu, Yang},
  title     = {ID-VTG: Image-Disambiguated Video Temporal Grounding},
  booktitle = {Proceedings of the 34th ACM International Conference on Multimedia},
  year      = {2026},
  doi       = {10.1145/3767308.3836517}
}