ICML 2026

MEDSIGHT: Towards Grounded Visual Comprehension in
Medical Large Vision-Language Models

1The Pennsylvania State University · 2GE HealthCare
*Work done during an internship at GE HealthCare.
MEDSIGHT architecture overview
Figure 1. Overview of MEDSIGHT. (a) The end-to-end framework supports both fine-grained visual perception and pixel-level grounding within a single generative LLM. (b) The Region Perceiver uses dual cross-attention between region queries and upsampled image features. (c) The modality-aware region codebook discretizes region embeddings into interpretable codes that are added to the LLM vocabulary.

Abstract

Medical large vision–language models (Med-LVLMs) have recently achieved remarkable progress in vision–language comprehension and medical image segmentation. However, existing models still struggle to unify these two capabilities, which is essential for clinically meaningful reasoning that connects visual findings with semantic interpretation. We present MEDSIGHT, a unified framework that equips Med-LVLMs with structured, pixel-level understanding for grounded visual comprehension. MEDSIGHT introduces a novel Region Perceiver module that produces region-centric tokens, encoding spatial information directly into the representation space of the language model. We further propose a medical region codebook in the LLM vocabulary, allowing the model to generate discrete region codes as symbolic representations of anatomical and pathological regions. These codes are decoded through the Region Perceiver to reconstruct segmentation masks, achieving end-to-end spatial grounding. A progressive training strategy stably aligns these modules. Trained on only 72K multimodal instruction pairs, MEDSIGHT achieves state-of-the-art performance across diverse imaging modalities on both medical comprehension and segmentation tasks.

Motivation

Recent Med-LVLMs have demonstrated impressive multimodal understanding of medical data, but most remain limited to high-level visual comprehension and lack pixel-level grounding that aligns reasoning with verifiable visual evidence. Two key limitations of prior unified Med-LVLMs:

Patch-only inputs

CLIP patch tokens encode coarse semantic context and discard crucial spatial details — lesion boundaries, organ contours, tissue textures — that medical reasoning depends on.

Single [SEG] token outputs

Representing every segmentation region with one token prevents the model from distinguishing diverse anatomical structures and producing region-specific outputs needed for accurate grounding.

Performance on grounded diagnostic segmentation
Figure 2. Performance of Med-LVLMs on Grounded Diagnostic Segmentation. Existing models cannot jointly diagnose and ground. MEDSIGHT dominates the upper-right region.

Method

MEDSIGHT augments a frozen CLIP image encoder and LLM with two complementary modules — a Region Perceiver that produces pixel-aware region tokens, and a Modality-aware Region Codebook that is embedded into the LLM vocabulary. A progressive training pipeline aligns these components end-to-end.

Region Perceiver — Fine-grained Perception

L learnable region queries Q interact with upsampled CLIP features through dual cross-attention — region ↔ image — producing region embeddings Qr that encode both semantic context and pixel-level spatial detail. The Region Perceiver is pre-trained on BiomedParse data with LR = LBCE + LDice + LCE using Hungarian matching, following DETR-style segmentation supervision.

Modality-aware Region Codebook

Region embeddings Qr are discretized into K × M codes — one bank per imaging modality. Each region picks its nearest code, which is mapped back into the visual feature space via Wm. Codes are appended to the LLM vocabulary, letting the LLM generate region tokens (e.g., [C2_16]) that the text→vision projector decodes into segmentation masks.

Progressive Training Pipeline

Stage 1

Pre-train the Region Perceiver on segmentation data. Align visual features with the language space via Pv→t.

Stage 2

Learn the modality-aware codebook and integrate it into the LLM vocabulary. Align text→vision grounding via Pt→v.

Stage 3

Unified grounded instruction tuning: jointly fine-tune LLM, projectors and codebook with both reasoning and grounding data.

Final objective:   Lfinal = LLLM + Lseg

Main Experiment Results

Result 1: Medical Visual Comprehension (Recall / Accuracy)

On six medical VQA benchmarks (VQA-RAD, SLAKE, PathVQA, MMMU-Med, OmniMedVQA, and the diagnosis subset of DiagSeg), MEDSIGHT achieves an average score of 62.3, outperforming the best baseline HuatuoGPT-Vision (58.3) while being fine-tuned with only 72K instruction-tuning samples (roughly 9× less than HuatuoGPT-Vision). For each VQA dataset we report close-ended (c) accuracy and overall (a) recall. Rows in gray denote models with partial overlap between their training data and the evaluation sets. Bold marks the best result among unified models and overall.

Type Model #Params #Data VQA-RAD ↑ SLAKE ↑ PathVQA ↑ MMMU-Med ↑ OMVQA ↑ DiagSeg-Diag ↑ Avg. ↑
closeall closeall closeall
Comp.
only
BLIP-26.7B 43.436.841.635.348.528.8 27.326.922.334.5
LLaVA-v1.57B158K 51.842.837.137.753.531.4 32.744.745.341.9
InstructBLIP7B364K 61.044.866.843.356.032.3 25.329.035.943.8
Yi-VL6B10K 52.642.152.438.454.930.9 38.050.233.043.6
InternVL28B7.3M 64.949.066.650.160.031.9 43.354.542.351.4
Llama-3.211B 68.945.572.452.162.833.6 39.363.246.453.8
Med-Flamingo8.3B1.3M 58.643.047.025.561.931.3 28.734.934.640.6
LLaVA-Med7B60K 60.248.158.444.862.335.7 30.041.335.346.2
HuatuoGPT-Vision7B647K 69.760.069.060.163.641.3 43.366.451.158.3
Qwen3-VL8B 72.853.476.966.166.936.9 46.775.344.559.9
InternVL3.58B16.3M 67.748.982.172.267.038.6 46.084.544.661.3
HealthGPT-M33.8B1.5M 73.755.974.656.478.739.7 43.368.544.159.4
HealthGPT-L1414B1.5M 77.758.376.464.585.944.4 49.274.451.264.7
Lingshu-7B7B7.1M 78.364.577.270.885.055.5 60.778.455.469.5
Unified OMG-LLaVA7B1.2M 56.337.654.639.965.236.2 32.718.328.041.0
MIMO*7B 58.857.052.4
MedPLIB14B/7B500K 58.334.848.437.435.218.2 28.761.913.137.3
MEDSIGHT (Ours) 8B72K 79.961.4 70.960.2 66.342.6 51.368.9 58.962.3

Table 1. Comparison of MEDSIGHT with general/medical LVLMs and unified LVLMs on medical visual comprehension. Comp.-Only denotes models trained solely for visual comprehension; Unified models are trained on both comprehension and segmentation. Gray rows indicate partial overlap between training and evaluation data. *MIMO is evaluated only on the three public VQA splits in the original paper.

Result 2: DiagSeg — Grounded Diagnostic Segmentation (8 modalities)

On the proposed DiagSeg benchmark covering eight medical imaging modalities, MEDSIGHT attains a mean diagnosis recall of 58.9 and a mean segmentation Dice of 69.9 — substantially ahead of every baseline on both axes.

Model #Params DiagSeg-Diagnosis (Recall) ↑ DiagSeg-Segmentation (Dice) ↑
CTMRIX-rayPath USEndDerOCTAvg. CTMRIX-rayPath USEndDerOCTAvg.
LISA7B 11.87.93.821.65.92.933.427.814.1 15.79.834.045.239.328.962.619.131.8
LISA++7B 9.319.65.116.76.219.435.716.715.1 1.912.521.626.98.96.831.20.713.8
LaSagnA7B 3.64.11.08.25.10.014.82.84.4 9.38.718.230.014.118.034.912.618.2
GLaMM7B 11.420.66.916.638.910.622.33.116.9 1.64.516.622.89.95.626.30.811.0
OMG-LLaVA7B 12.723.010.717.034.65.526.915.718.3 0.95.115.520.711.77.725.91.011.1
MedPLIB14B/7B 4.518.515.35.371.922.429.00.413.1 3.847.129.819.349.916.680.47.231.8
MEDSIGHT (Ours)8B 54.654.459.1 80.151.762.4 40.269.358.9 65.882.357.7 52.965.870.0 87.755.669.9

Table 2. Mean Recall and mean Dice on DiagSeg. MEDSIGHT leads on both diagnosis and segmentation across all eight modalities, exceeding the best baselines by +40.6 (Recall) and +38.1 (Dice) on average. Modality abbreviations: CT, MRI, X-ray, Path (pathology), US (ultrasound), End (endoscopy), Der (dermoscopy), OCT.

More experiments in the paper. We additionally report Text-Prompted Medical Image Segmentation (MeCoVQA-G across 8 modalities, including OOD cases), a full Ablation Study over each component and training stage, and analyses of the learned codebook and backbone variants. Please refer to the paper for the full results, additional baselines, and qualitative comparisons.

Qualitative Examples

MEDSIGHT correctly identifies the abnormality, emits the matching region code (e.g., [C3_11], [C10_3], [C1_16]), and the text→vision projector decodes it into an accurate mask. Multi-region segmentation (e.g., liver and spleen) is captured by separate, semantically distinct codes.

Grounded diagnostic segmentation case study
Figure 3. Grounded diagnostic segmentation across modalities (ultrasound, MRI, CT) — input image, prompt & ground truth, ground-truth mask, model answer, and decoded mask logits.
Region codebook visualization
Figure 4. Each region code learns a coherent anatomical pattern. For example, [C1_16] attends to the liver in abdominal CT.

BibTeX

@inproceedings{chang2026medsight,
  title     = {MEDSIGHT: Towards Grounded Visual Comprehension in
               Medical Large Vision-Language Models},
  author    = {Chang, Aofei and Huang, Le and Boyd, Alex James and
               Bhatia, Parminder and Kass-Hout, Taha and
               Ma, Fenglong and Xiao, Cao},
  booktitle = {Proceedings of the 43rd International Conference on
               Machine Learning (ICML)},
  year      = {2026}
}

Acknowledgments

We thank the anonymous reviewers for their insightful comments. We also thank Dr. Anjali Rajeev from GE HealthCare as one of the experts for participating in the human validation experiments and Dr. Haidong Yi from St. Jude Children's Research Hospital for valuable suggestions on the manuscript. This work was partially supported by the National Science Foundation under Grant No. 223827 (F. Ma).