Research
Bridging Vision and Language for Robust Context-Aware Surgical Point Tracking: The VL-SurgPT Dataset and Benchmark
Overview Research area: Medical computer vision and surgical robotics — specifically, multimodal (vision-language) point tracking in live surgical video. Technical level: Intermediate. The core idea i
- arXiv
- 2511.12026
- Published
- 2025-11-15
- Authors
- Rulin Zhou, Wenlong He, An Wang, Jianhang Zhang, Xuanhui Zeng, Xi Zhang, Chaowei Zhu, Haijun Hu, Hongliang Ren
AI summary
Overview
Research area: Medical computer vision and surgical robotics — specifically, multimodal (vision-language) point tracking in live surgical video.
Technical level: Intermediate. The core idea is accessible, but the method builds on transformer-based point trackers (Track-On, CoTracker) and CLIP text encoders, so some familiarity with point tracking and multimodal learning helps.
Scope: The paper introduces VL-SurgPT, the first large-scale surgical point-tracking dataset pairing coordinate annotations with text descriptions of each point's visual status, along with a benchmark of eight trackers and a new text-guided tracking model, TG-SurgPT.
What This Paper Is About
Tracking a specific point (a tissue landmark or an instrument joint) across frames of surgical video is hard because surgeons operate through smoke, glare, blood, and constantly deforming tissue. Existing datasets only record where a point is, not why a tracker loses it — so they cannot explain or fix failures caused by smoke, specular reflection, or occlusion. This paper builds a dataset that attaches a short text label to every annotated point describing its visual condition, then shows that feeding those descriptions to a tracking model measurably improves accuracy under the worst visual conditions.
Key Contributions
-
VL-SurgPT dataset. 908 in vivo video clips collected with the da Vinci Xi system: 754 clips for tissue tracking (17,171 annotated tissue points across 1,862 trajectories, spanning five challenge scenarios) and 154 clips for instrument tracking (seven instrument types, up to seven keypoints per instrument). Every annotated point carries 2D coordinates, a point type, and a textual point-status label drawn from a nine-term vocabulary (Clear View, Pulled, Reflection, Smoke Obscuration, Instrument Obscuration, Tissue Obscuration, Out of View, External Occlusion, Self-occlusion).
-
A ground-truth protocol for deformable, uncontrolled surgery. Because in vivo surgery cannot be repeated like a lab setup, the authors inject Indocyanine Green (ICG) fluorescent dye at chosen tissue and instrument keypoints, record their coordinates under UV/fluorescence imaging at the start and end of each 5–10 second clip, and then have two experienced clinicians trace the intermediate frames manually at 1 fps under white light.
-
A comprehensive benchmark. Eight state-of-the-art trackers (RAFT, SEA-RAFT, TAPIR, BootsTAP, CoTrackerV3, MFT, MFTIQ, Track-On) are evaluated on both subsets using standard TAP-Vid/STIR metrics, with per-scenario breakdowns and visual-status classification analysis.
-
TG-SurgPT, a text-guided tracker. A dual-branch model that fuses CLIP-encoded text descriptions with Track-On visual features through cross-modal attention, and that predicts point status itself at inference time so no human labels are needed during deployment.
Main Findings
-
Text guidance improves every metric. TG-SurgPT reaches 62.88 AJ on tissue and 49.52 AJ on instruments, beating the strongest baseline (Track-On at 58.55 and 46.97). Gains are larger for instruments: roughly +5.4% AJ and +6.4% position accuracy. End Point Error on tissue drops from 13.79 px to 11.02 px (a 14% relative reduction) after adding text guidance.
-
Flow-based trackers collapse in surgery. RAFT and SEA-RAFT stay below 30% AJ on tissue, while transformer-based trackers dominate, indicating that attention over space and time is the right inductive bias for smoke, deformation, and specular glare.
-
There is a sharp accuracy-versus-speed trade-off. MFT and MFTIQ are accurate (57.61 and 61.52 AJ on tissue) but run at 1.42 and 0.71 fps, far too slow for surgery. TG-SurgPT delivers the best accuracy at 9.72 fps, close to Track-On's 10.85 fps.
-
Scenario difficulty is not intuitive. Tissue Deformation is the hardest of the five scenarios, yet Cauterization Smoke scores highest (58.62% mean position accuracy) — the authors attribute this to smoke producing distinctive temporal and edge patterns that attention mechanisms can exploit.
-
Semantic prediction is uneven across categories. The model predicts "Pulled" (85.1%) and "Clear View" (78.5%) tissue states well but struggles with ambiguous obscuration states. For instruments, self-occlusion (65.3%) and external occlusion (65.9%) are handled decently, while "Out of View" is weakest at 48.1%, reflecting the difficulty of catching rapid instrument exits.
-
Shorter training clips work better. Ablations show 31-frame clips outperform 181-frame clips on AJ and EPE, suggesting shorter temporal windows reduce noise when annotations are sparse.
-
Fine-tuning matters, and text adds on top. Fine-tuning Track-On on short surgical clips already lifts tissue AJ from 58.55 to 61.09; adding text guidance pushes it to 62.88, with Occlusion Accuracy rising to 91.04.
-
Sparse real data can replace dense synthetic pretraining. The loss (Huber point distance + trajectory smoothness + cross-entropy on status labels) lets the model train on sparsely annotated real surgical footage rather than requiring dense synthetic datasets like MOVi-F.
Methodology in Plain English
The team recorded roughly 33 hours of robotic gastrointestinal surgery and whittled it down to 115 minutes of clean footage covering gastrectomy, colorectal resection, and related procedures. Ground truth came from a clever workaround: a clinician dabbed ICG dye onto tissue spots and instrument joints, briefly switched the da Vinci system into fluorescence mode to capture those points precisely, then switched back to white light and operated for 5–10 seconds, capturing the markers again at the end. Those two fluorescence snapshots anchor the trajectory; clinicians then traced the points frame by frame through the white-light middle.
For the model, each tracked point has two text attributes — its type (tissue or instrument) and its status (e.g., "Smoke Obscuration"). These are encoded by a frozen CLIP text encoder. Meanwhile a frozen Track-On network supplies visual features: query-point descriptors, dense frame features, coarse patch matches, and a first-pass coordinate estimate. A multi-scale deformable attention module lets each query look at a few informative spatial locations, and two small classification heads predict point type and point status directly from vision. Those predicted statuses then feed a cross-attention layer that combines text and visual features to produce a small coordinate correction, added to the initial estimate. Crucially, training uses the dataset's human-written descriptions, but at test time the model substitutes its own predictions, so it runs automatically without any manual text input.
Why This Matters
Impact on research. VL-SurgPT reframes surgical tracking from a pure geometry problem into a context-aware one. By labeling why a tracker fails, the dataset supports failure analysis, condition-specific benchmarking, and a new class of models that reason about visual state rather than only matching pixels.
Real-world applications:
- Robot-assisted surgery: motion compensation so instruments hold steady on a moving organ, and safer autonomous subtasks like suturing or tissue retraction.
- Augmented reality guidance: stable overlays of anatomy and instrument trajectories that do not drift when smoke or glare floods the camera.
- Surgical training and skill assessment: tracking a trainee's instrument keypoints over time and scoring smoothness, precision, and tissue handling.
- Post-operative analytics: automatically reconstructing workflow steps and tissue manipulation events from archived surgical video.
Industry relevance. Surgical robotics vendors, surgical AI startups, and medical device companies need trackers that survive real intraoperative conditions, not curated benchmarks. A multimodal dataset with semantic labels also supports interpretability and auditability, which matters for regulatory review of clinical AI. The reported speed ceiling (9.72 fps) is a direct signal that real-time deployment remains an engineering gap.
Future Directions
- Broaden the dataset. The current data is limited to gastrointestinal procedures on the da Vinci Xi platform. Extending to other specialties (cardiac, neurosurgery, urology) and other robot or laparoscopic systems would test generalization.
- Reach real-time inference. At 9.72 fps the model falls short of clinical frame rates; distillation, quantization, or lighter backbones are natural next steps.
- Fix the weak semantic categories. "Out of View" detection (48.1%) and ambiguous tissue-obscuration states need better handling, perhaps via longer temporal context or explicit re-detection mechanisms.
- Exploit limited labels more aggressively. The paper suggests more advanced cross-modal learning — semi-supervised or self-supervised use of unlabeled surgical video, plus richer language (free-form captions rather than a fixed nine-term vocabulary) — as a way to scale without proportional annotation cost.
Target Audience
Surgical robotics and medical computer vision researchers; multimodal machine learning practitioners interested in low-level vision-language fusion; clinicians and clinical engineers evaluating tracking tools for intraoperative use; and industry teams building computer-assisted intervention products who need to know where current trackers fail and by how much.
Authors’ abstract
Accurate point tracking in surgical environments remains challenging due to complex visual conditions, including smoke occlusion, specular reflections, and tissue deformation. While existing surgical tracking datasets provide coordinate information, they lack the semantic context necessary to understand tracking failure mechanisms. We introduce VL-SurgPT, the first large-scale multimodal dataset that bridges visual tracking with textual descriptions of point status in surgical scenes. The dataset comprises 908 in vivo video clips, including 754 for tissue tracking (17,171 annotated points across five challenging scenarios) and 154 for instrument tracking (covering seven instrument types with detailed keypoint annotations). We establish comprehensive benchmarks using eight state-of-the-art tracking methods and propose TG-SurgPT, a text-guided tracking approach that leverages semantic descriptions to improve robustness in visually challenging conditions. Experimental results demonstrate that incorporating point status information significantly improves tracking accuracy and reliability, particularly in adverse visual scenarios where conventional vision-only methods struggle. By bridging visual and linguistic modalities, VL-SurgPT enables the development of context-aware tracking systems crucial for advancing computer-assisted surgery applications that can maintain performance even under challenging intraoperative conditions.