Overview
- Paper: Static and Dynamic Graph Alignment Network for Temporal Video Grounding
- Authors: Zhanjie Hu, Bolin Zhang, Jianhua Wang, Jianbo Zheng, Chenchen Yan, Takahiro Komamizu, Ichiro Ide, Jiangbo Qian
- arXiv: 2605.00684 (2026-04-30)
- Dual graph construction
- *Static graph*: built from per-frame visual features; captures scene semantics (e.g., "on the beach").
- *Dynamic graph*: built from temporal motion features; captures actions and changes (e.g., "building").
- Graph alignment mechanism: aligns the static and dynamic graphs to correlate semantic content with temporal actions (e.g., beach scene ↔ building action).
- Query-guided graph reasoning: the text query guides graph convolutions, focusing on query-relevant nodes and edges and ignoring unrelated clips.
- Explicit cross-modal alignment: video graph features and text features are aligned and scored to localize the best matching moment.
- Purely static methods can find the beach scene but cannot distinguish "building a sandcastle" from "sunbathing on the beach".
- Purely dynamic methods can find the building action but cannot distinguish "building a sandcastle" from "stacking blocks".
- Static information tells you *where* (beach); dynamic information tells you *what is happening* (building); only their combination enables precise grounding.
- Graph structure models inter-clip relations rather than treating clips independently (e.g., "the previous clip shows the baby walking to the beach; the next one shows the sandcastle building starting").
The paper addresses Temporal Video Grounding (TVG): given a natural-language query (e.g., "baby building a sandcastle on the beach"), automatically locate the corresponding time span in a long video, instead of manually scrubbing a timeline or processing the entire video.
Limitations of Existing Methods
1. Static vs. dynamic trade-off: Some methods use only static features (per-frame visual semantics), ignoring temporal dynamics; others use only dynamic features (motion), ignoring scene semantics. Their complementarity is underexploited. 2. Simplified graph construction: GCNs can model temporal relations between clips, but existing approaches build graphs too simplistically and do not use query-text semantics to guide construction. 3. No explicit alignment: Video and text features live in separate spaces without an explicit cross-modal alignment mechanism, limiting localization accuracy.
The Proposed Method
Why Combining Static and Dynamic Cues Matters
Takeaways for Video Understanding Systems
Ask yourself:
1. Am I fully exploiting the complementarity of static and dynamic features? 2. Does my graph structure capture temporal relations between clips? 3. Does the query text guide feature extraction and matching? 4. Is cross-modal alignment performed explicitly?
Core insight: video understanding needs a dual perspective—the semantic eye of static content and the action eye of dynamics. Only when a model looks with both eyes can it understand "what happened" and precisely locate the requested moment in long videos.