REVIEW 4 major objections 6 minor 46 references
SAM2-SGP: Enhancing SAM2 for Medical Image Segmentation via Support-Set Guided Prompting
T0 review · 4 major / 6 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read SAM2-SGP claims that a SAM2-based model can segment medical images without user-supplied prompts by generating pseudo-masks from a support set, and that this prompt-free design outperforms fully supervised models and prior SAM2…
desk verdict Useful SAM2 adaptation idea, but the claimed win over SAM2 baselines rests on a random-click prompt disadvantage and needs a fair rerun before the headline is credible. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the support-set-guided pseudo-mask loop built on SAM2's memory attention. A support-memory encoder adds downsampled support masks to support-image embeddings ($M_s = \phi(y_s) + F_s$); support-memory attention applies self-attention and then cross-attention between query embeddings and these support memories to form query-specific features; a lightweight decoder with an empty prompt produces the pseudo-mask $\tilde{y}_q$. That pseudo-mask then does double duty: it is resized and element-wise multiplied into the attention output of the Pseudo-mask Attention module ($\hat{F}_q = \tilde{y}'_q \odot \mathrm{softmax}(QK^T/\sqrt{d})V + \tilde{F}_q$), and it supplies the bounding-box prompt $B_{\mathrm{box}}$ for the prompt encoder. For 3D data, the same memory machinery is extended with a queue-based volumetric memory bank that appends encoded previous-slice predictions to the support memory.
What would settle it
Run the reported 2D benchmarks again with the K support samples chosen by a random or deliberately poor ranking instead of the paper's similarity criterion. If Dice does not drop substantially, then the claimed support-set-guided prompting mechanism is not what drives the gains; if it does drop, the missing similarity definition becomes the decisive implementation detail.
Extended reading notes
Core claim
On the paper's own terms, the central discovery is that SAM2's memory mechanism, built for tracking objects across video frames, can be repurposed as an in-context learner for medical segmentation. The Pseudo-mask Generation module encodes support-set masks together with support-image features, cross-attends these support memories against query-image features, and decodes an initial pseudo-mask with an empty prompt. The Pseudo-mask Attention module turns that pseudo-mask into a bounding-box prompt and multiplies a resized pseudo-mask into the attention output, so the final decoder concentrates on the region the pseudo-mask highlights. For 3D volumes, a third module treats slices as frames, storing previously predicted slices in a memory bank that is concatenated with the support memory, and the memory bank pops the least similar entry as the model propagates along the axial direction. The paper reports that this prompt-free design consistently achieves the highest Dice among all compared methods on REFUGE, PanDental, WBC, CAMUS, BUSI, AMOS22 CT/MRI, PET/CT, and ACDC.
Load-bearing premise
The load-bearing premise is that the K most similar support images can be selected reliably, but the paper never defines the similarity function it uses, so the pseudo-mask, the box prompt, and the final segmentation all inherit whatever errors that unspecified ranking introduces.
Editorial extensions
If this is right
- Automatic inference: once trained, the model needs only the query image plus the stored support set, so no clicks or boxes are required at test time.
- Domain adaptation via LoRA: freezing SAM2's image encoder and tuning only low-rank layers is enough to transfer natural-image pretraining to medical modalities, per the reported Dice gains.
- 3D handled as video: treating axial slices as a temporal sequence makes SAM2's video memory directly applicable to CT, MRI, and PET volumes, with adjacent-slice context stored in a memory bank.
- Support-set size is a tunable cost-accuracy dial: larger support sets improve reported Dice and IoU up to a point, with size 4 chosen as the default trade-off.
- Stronger than fully supervised baselines on these benchmarks: the reported Dice scores exceed nnUNet, SwinUNet, and UNETR as well as SAM2 and MedSAM2 on all evaluated 2D and 3D datasets.
Reading between the lines
- Because the K-most-similar selection criterion is never specified, the reported results should be read as conditional on an implicit retrieval quality; a natural extension is to quantify how Dice degrades as the similarity ranking is corrupted or replaced by random selection.
- The unidirectional slice propagation uses only half of the available 3D context; extending the memory bank to bidirectional propagation is a direct algorithmic next step that could raise accuracy on anisotropic volumes.
- The framework's prompt-free design suggests a practical deployment pattern: one frozen SAM2 with per-organ or per-modality support sets, with LoRA adapters swapped per domain, rather than retraining a full segmentation network for each task.
- The pseudo-mask attention's restriction to relevant regions may reduce compute on high-resolution inputs like fundus and panoramic X-ray, though the paper does not report runtime or FLOPs to confirm this.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes SAM2-SGP, a framework for automatic (prompt-free) medical image segmentation built on SAM2. A support set of image-mask pairs is used by a Pseudo-mask Generation (PMG) module, which adapts SAM2's memory attention to produce a pseudo-mask for each query image. A Pseudo-mask Attention (PMA) module converts the pseudo-mask into a bounding-box prompt and uses the pseudo-mask to gate attention, while LoRA adapts the frozen image encoder to the medical domain. For 3D volumes, a 3D memory module propagates predictions slice-to-slice. The method is evaluated on five 2D datasets and three 3D datasets against UNETR, SwinUNet, nnUNet, SAM2, and MedSAM2, and is reported to achieve the highest Dice in most settings. Ablations examine the contributions of the PMG, PMA, and 3DM modules, support-set size, and SAM2 pretrained weights. The central claim is that SAM2-SGP consistently outperforms both fully supervised models and SAM2-based approaches across modalities without manual prompting.
Significance. If the results hold under a fair comparison protocol, the paper makes a useful empirical contribution: it shows a concrete way to remove manual prompting from SAM2-style medical segmentation while retaining the benefits of foundation-model priors, through in-context support sets and pseudo-mask-guided attention. The paper also ships code and includes ablations for each proposed module, which are commendable for reproducibility. The architectural description is backed by equations and figures, and the use of LoRA to adapt a frozen encoder is sensible. However, the significance is currently tempered by a comparison protocol that appears unfair to the promptable baselines, by an undefined support-set similarity measure that undermines exact reproducibility, and by the absence of any error bars or significance tests. These issues affect the paper's central claim of consistent superiority and must be addressed before the contribution can be fully assessed.
major comments (4)
- [Section 5.1, Tables 1-4] The evaluation of SAM2 and MedSAM2 uses a random click as the prompt, as stated in Section 5.1, while SAM2-SGP automatically derives a bounding-box prompt from its pseudo-mask. Because SAM2 and MedSAM2 are prompt-dependent segmenters, a random click that often lands outside or on the boundary of the target structure cannot be considered a comparable baseline. The large reported gaps (e.g., REFUGE 0.753 vs. 0.865 and WBC 0.627 vs. 0.976) may therefore reflect the prompt information advantage rather than the contribution of the proposed modules. To substantiate the central claim, the authors should compare against SAM2/MedSAM2 using equivalent automatic prompts (e.g., ground-truth or predicted box prompts, or a multi-click protocol) and report both the prompt protocol and the resulting scores.
- [Section 3.1, Eq. (5)-(6)] The support-set selection is not reproducible: the paper states that 'we selected a subset of the support set consisting of the K most similar samples' but never defines the similarity function. Since the PMG module's pseudo-mask quality depends directly on this ranking, and for 3D data the memory bank also stores the model's own previous predictions (Eqs. 5-6), an undefined selection procedure makes the method impossible to re-implement exactly and leaves the failure mode of early poor selections unexamined. The authors should specify the similarity metric (e.g., feature distance, image-level Dice of pseudo-masks, or DINOv2 features) and describe how the selection is performed during training and inference.
- [Section 4.1.2 and Section 5.2] The dataset descriptions do not match the cited references. The head-and-neck PET/CT dataset is introduced with reference [36] as '100 3D PET images with a resolution of 124x124 pixels per slice,' but Section 5.2 evaluates on 'the PET/CT dataset [42],' which is described in the bibliography as a PET image denoising dataset. Similarly, the 'Panoramic dental dataset' is cited to reference [32], which is titled 'Automatic segmentation of mandible in panoramic x-ray' and does not describe an over-1,000-image tooth-and-bone segmentation dataset as stated. These mismatches make the exact evaluation conditions ambiguous and should be corrected with the proper dataset references and scanning protocols.
- [Tables 1-5] No error bars, confidence intervals, or statistical significance tests are reported for any of the Dice comparisons. Several reported differences are small (e.g., CAMUS 0.932 vs. 0.925; ACDC average 0.917 vs. 0.916; Table 5 right kidney 0.952 vs. 0.953 across ablations), so without variance estimates the 'consistent' superiority claim is not established even under a fair prompt protocol. The authors should report results over multiple random seeds or cross-validation folds and, where appropriate, a paired significance test.
minor comments (6)
- [Throughout] There are several typos and inconsistencies: 'Pesudo Mask Decoder' in Figure 2, 'Pandental' in Figure 4, 'outputed' in Section 3.2, and inconsistent capitalization of 'medSAM2' versus 'MedSAM2' between text and tables.
- [Abstract and Section 1] The word 'significant' is used to describe performance improvements, but no statistical significance is established; please replace with 'substantial' or add significance tests.
- [Section 4.2] The hyperparameter details ('learning rates and batch sizes were tuned') are too vague for reproduction; please list the actual values per dataset, including LoRA rank and alpha, loss weights in Eq. (9), and the memory bank size.
- [Section 5.3.2, Table 6] The support-set-size ablation is described as duplicating a subset of training samples so that 'the training distribution remained unchanged'; please clarify whether the support set is disjoint from the query set used for training, and whether any samples in the support set also appear among the training queries, to rule out trivial memorization.
- [Table 3] The organ-wise results show that SAM2-SGP is not best on all organs (e.g., pancreas 0.851 vs. nnUnet 0.874; esophagus 0.852 vs. nnUnet 0.857), which is fine, but the text should acknowledge this nuance when claiming consistent superiority.
- [Section 5.2, Table 4] The ACDC results show lower Dice for left ventricle and myocardium than some baselines; the text mentions this but should also explain whether this is due to the unidirectional 3D propagation limitation mentioned in Section 6.
Circularity Check
No circular derivation: SAM2-SGP is a forward architecture trained with ground-truth Dice/CE losses; the KL term is a consistency regularizer, and self-cited datasets are evaluation inputs, not load-bearing premises.
full rationale
SAM2-SGP is an empirical systems paper rather than a formal derivation, and its central claim rests on benchmark comparisons, not on a chain of equations that reduces to its own inputs. The PMG module (Eqs. 2-4) maps support-set image-mask pairs and query embeddings to an intermediate pseudo-mask; the PMA module (Eqs. 7-8) uses that pseudo-mask only to construct a bounding-box prompt and to gate attention; the final loss (Eq. 9) is a weighted sum of Dice, cross-entropy, and KL terms. The KL term couples the pseudo-mask and the final prediction, but both are anchored to the ground truth y_q by the Dice and CE terms, so this is a coherence regularizer rather than a case where the predicted quantity is defined as the input. No parameter is fitted to test-set labels, and the support set is drawn from the training split, which is standard in-context learning rather than circular evidence. The self-citations ([36], [42]) supply the PET/CT evaluation dataset; they do not define any equation in the method and the main comparison does not reduce to them. The random-click protocol for SAM2/MedSAM2 baselines and the unspecified similarity measure for support-set selection are legitimate experimental-fairness and reproducibility concerns, but they are not circular reductions of the paper's derivation. The bulk of evaluation is on public datasets, and the proposed modules are described with explicit forward equations. I therefore find no load-bearing circular step.
Assumptions & free parameters
free parameters (6)
- Loss weights lambda_dice, lambda_ce, lambda_KL =
Not reported
- Support-set size K =
4 (default)
- LoRA rank and alpha =
Not reported
- Learning rate and batch size =
Tuned per dataset, not reported
- Memory bank size for 3D =
Equal to support-set size by default
- Support-set similarity metric =
Unspecified
assumptions (4)
- domain assumption SAM2's memory mechanism transfers to cross-image in-context learning.
- domain assumption 3D medical volumes can be treated as temporal video sequences along one axis.
- ad hoc to paper The K most similar support samples can be chosen reliably with an undefined similarity measure.
- domain assumption Pretrained SAM2 weights benefit medical segmentation despite domain shift.
Cite this review
Pith. "Pith review of SAM2-SGP: Enhancing SAM2 for Medical Image Segmentation via Support-Set Guided Prompting." pith.science (2026). https://pith.science/paper/BDCOQTAO
@misc{pith2026250619658,
author = {Pith},
title = {Pith review of: SAM2-SGP: Enhancing SAM2 for Medical Image Segmentation via Support-Set Guided Prompting},
year = {2026},
howpublished = {\url{https://pith.science/paper/BDCOQTAO}},
note = {Machine review of arXiv:2506.19658}
}
read the original abstract
Although new vision foundation models such as Segment Anything Model 2 (SAM2) have significantly enhanced zero-shot image segmentation capabilities, reliance on human-provided prompts poses significant challenges in adapting SAM2 to medical image segmentation tasks. Moreover, SAM2's performance in medical image segmentation was limited by the domain shift issue, since it was originally trained on natural images and videos. To address these challenges, we proposed SAM2 with support-set guided prompting (SAM2-SGP), a framework that eliminated the need for manual prompts. The proposed model leveraged the memory mechanism of SAM2 to generate pseudo-masks using image-mask pairs from a support set via a Pseudo-mask Generation (PMG) module. We further introduced a novel Pseudo-mask Attention (PMA) module, which used these pseudo-masks to automatically generate bounding boxes and enhance localized feature extraction by guiding attention to relevant areas. Furthermore, a low-rank adaptation (LoRA) strategy was adopted to mitigate the domain shift issue. The proposed framework was evaluated on both 2D and 3D datasets across multiple medical imaging modalities, including fundus photography, X-ray, computed tomography (CT), magnetic resonance imaging (MRI), positron emission tomography (PET), and ultrasound. The results demonstrated a significant performance improvement over state-of-the-art models, such as nnUNet and SwinUNet, as well as foundation models, such as SAM2 and MedSAM2, underscoring the effectiveness of the proposed approach. Our code is publicly available at https://github.com/astlian9/SAM_Support.
Figures
Figures from the paper (4 more)
Reference graph
Works this paper leans on
-
[36]
Swincross: Cross- modal swin transformer for head-and-neck tumor segmentation in pet/ct images,
G. Y . Li, J. Chen, S.-I. Jang, K. Gong, and Q. Li, “Swincross: Cross- modal swin transformer for head-and-neck tumor segmentation in pet/ct images,”Medical Physics, vol. 51, no. 3, pp. 2096–2107, 2024
work page 2024
-
[42]
AMOS: A large-scale abdominal multi-organ benchmark for versatile medical image segmentation,
Y . Ji, H. Bai, C. GE, J. Yang, Y . Zhu, R. Zhang, Z. Li, L. Zhanng, W. Ma, X. Wan, and P. Luo, “AMOS: A large-scale abdominal multi-organ benchmark for versatile medical image segmentation,” inThirty-sixth Conference on Neural Information Processing Systems Datasets and Benchmarks Track, 2022. [Online]. Available: https://openreview.net/forum?id=Vk4-HUnkEak
work page 2022
-
[32]
Automatic segmentation of mandible in panoramic x-ray,
A. H. Abdi, S. Kasaei, and M. Mehdizadeh, “Automatic segmentation of mandible in panoramic x-ray,”Journal of Medical Imaging, vol. 2, no. 4, p. 044003, October 2015. [Online]. Available: https://doi.org/10.1117/1.JMI.2.4.044003
-
[1]
On the opportunities and risks of foundation models,
R. Bommasani, D. A. Hudson, and et al., “On the opportunities and risks of foundation models,”CoRR, vol. abs/2108.07258, 2021. [Online]. Available: https://arxiv.org/abs/2108.07258
arXiv 2021
-
[2]
A. Kirillov, E. Mintun, N. Ravi, H. Mao, C. Rolland, L. Gustafson, T. Xiao, S. Whitehead, A. C. Berg, W.-Y . Lo, P. Doll ´ar, and R. Girshick, “Segment anything,” 2023. [Online]. Available: https://arxiv.org/abs/2304.02643
arXiv 2023
-
[3]
Segment anything model (sam) for medical image segmentation: A preliminary review,
L. Zhang, X. Deng, and Y . Lu, “Segment anything model (sam) for medical image segmentation: A preliminary review,” in2023 IEEE International Conference on Bioinformatics and Biomedicine (BIBM), 2023, pp. 4187–4194
work page 2023
-
[4]
A survey on segment anything model (sam): Vision foundation model meets prompt engineering,
C. Zhang, J. Cho, F. D. Puspitasari, S. Zheng, C. Li, Y . Qiao, T. Kang, X. Shan, C. Zhang, C. Qin, F. Rameau, L.-H. Lee, S.-H. Bae, and C. S. Hong, “A survey on segment anything model (sam): Vision foundation model meets prompt engineering,” 2024. [Online]. Available: https://arxiv.org/abs/2306.06211
arXiv 2024
-
[5]
Autosam: Adapting sam to medical images by overloading the prompt encoder,
T. Shaharabany, A. Dahan, R. Giryes, and L. Wolf, “Autosam: Adapting sam to medical images by overloading the prompt encoder,” 2023. [Online]. Available: https://arxiv.org/abs/2306.06370
arXiv 2023
Show all 46 references
-
[6]
Segment anything in medical images and videos: Benchmark and deployment,
J. Ma, S. Kim, F. Li, M. Baharoon, R. Asakereh, H. Lyu, and B. Wang, “Segment anything in medical images and videos: Benchmark and deployment,” 2024. [Online]. Available: https://arxiv.org/abs/2408.03322
2024 arXiv
-
[7]
Medical sam adapter: Adapting segment anything model for medical image segmentation,
J. Wu, W. Ji, Y . Liu, H. Fu, M. Xu, Y . Xu, and Y . Jin, “Medical sam adapter: Adapting segment anything model for medical image segmentation,” 2023. [Online]. Available: https://arxiv.org/abs/2304.12620
2023 arXiv
-
[8]
Sam3d: Segment anything in 3d scenes,
Y . Yang, X. Wu, T. He, H. Zhao, and X. Liu, “Sam3d: Segment anything in 3d scenes,” 2023. [Online]. Available: https://arxiv.org/abs/2306.03908
2023 arXiv
-
[9]
3dsam-adapter: Holistic adaptation of sam from 2d to 3d for promptable tumor segmentation,
S. Gong, Y . Zhong, W. Ma, J. Li, Z. Wang, J. Zhang, P.-A. Heng, and Q. Dou, “3dsam-adapter: Holistic adaptation of sam from 2d to 3d for promptable tumor segmentation,”Medical Image Analysis, vol. 98, p. 103324, Dec. 2024. [Online]. Available: http://dx.doi.org/10.1016/j.medi...
2024
-
[10]
Ma-sam: Modality- agnostic sam adaptation for 3d medical image segmentation,
C. Chen, J. Miao, D. Wu, A. Zhong, Z. Yan, S. Kim, J. Hu, Z. Liu, L. Sun, X. Li, T. Liu, P.-A. Heng, and Q. Li, “Ma-sam: Modality- agnostic sam adaptation for 3d medical image segmentation,”Medical Image Analysis, vol. 98, p. 103310, 2024. [Online]. Available: https://www.scie...
2024
-
[11]
Medlsam: Localize and segment anything model for 3d ct images,
W. Lei, X. Wei, X. Zhang, K. Li, and S. Zhang, “Medlsam: Localize and segment anything model for 3d ct images,” 2024. [Online]. Available: https://arxiv.org/abs/2306.14752
2024 arXiv
-
[12]
Sam 2: Segment anything in images and videos,
N. Ravi, V . Gabeur, Y .-T. Hu, R. Hu, C. Ryali, T. Ma, H. Khedr, R. R¨adle, C. Rolland, L. Gustafson, E. Mintun, J. Pan, K. V . Alwala, N. Carion, C.-Y . Wu, R. Girshick, P. Doll ´ar, and C. Feichtenhofer, “Sam 2: Segment anything in images and videos,” 2024. [Online]. Availa...
2024 arXiv
-
[13]
Revsam2: Prompt sam2 for medical image segmentation via reverse-propagation without fine-tuning,
Y . Bai, B. Yun, Z. Chen, Q. Yu, Y . Xia, and Y . Wang, “Revsam2: Prompt sam2 for medical image segmentation via reverse-propagation without fine-tuning,” 2024. [Online]. Available: https://arxiv.org/abs/2409.04298
2024 arXiv
-
[14]
Few-shot adaptation of training-free foundation model for 3d medical image segmentation,
X. He, Y . Hu, Z. Zhou, M. Jarraya, and F. Liu, “Few-shot adaptation of training-free foundation model for 3d medical image segmentation,” 2025. [Online]. Available: https://arxiv.org/abs/2501.09138
2025 arXiv
-
[15]
Retrieval- augmented few-shot medical image segmentation with foundation models,
L. Zhao, X. Chen, E. Z. Chen, Y . Liu, T. Chen, and S. Sun, “Retrieval- augmented few-shot medical image segmentation with foundation models,” 2024. [Online]. Available: https://arxiv.org/abs/2408.08813
2024 arXiv
-
[16]
Medical sam 2: Segment medical images as video via segment anything model 2,
J. Zhu, A. Hamdi, Y . Qi, Y . Jin, and J. Wu, “Medical sam 2: Segment medical images as video via segment anything model 2,”
-
[17]
Interactive 3d medical image segmentation with sam 2,
C. Shen, W. Li, Y . Shi, and X. Wang, “Interactive 3d medical image segmentation with sam 2,” 2025. [Online]. Available: https://arxiv.org/abs/2408.02635
2025 arXiv
-
[18]
Biomedical sam 2: Segment anything in biomedical images and videos,
Z. Yan, W. Sun, R. Zhou, Z. Yuan, K. Zhang, Y . Li, T. Liu, Q. Li, X. Li, L. He, and L. Sun, “Biomedical sam 2: Segment anything in biomedical images and videos,” 2024. [Online]. Available: https://arxiv.org/abs/2408.03286
2024 arXiv
-
[19]
A short review and evaluation of sam2’s performance in 3d ct image segmentation,
Y . He, P. Guo, Y . Tang, A. Myronenko, V . Nath, Z. Xu, D. Yang, C. Zhao, D. Xu, and W. Li, “A short review and evaluation of sam2’s performance in 3d ct image segmentation,” 2024. [Online]. Available: https://arxiv.org/abs/2408.11210
2024 arXiv
-
[20]
Hiera: A hierarchical vision transformer without the bells-and-whistles,
C. Ryali, Y .-T. Hu, D. Bolya, C. Wei, H. Fan, P.-Y . Huang, V . Aggarwal, A. Chowdhury, O. Poursaeed, J. Hoffman, J. Malik, Y . Li, and C. Feichtenhofer, “Hiera: A hierarchical vision transformer without the bells-and-whistles,” 2023. [Online]. Available: https://arxiv.org/ab...
2023 arXiv
-
[21]
Multi-atlas abdomen labeling challenge,
M. 2015, “Multi-atlas abdomen labeling challenge,” 2015. [Online]. Available: https://www.synapse.org/
2015
-
[22]
Dinov2: Learning robust visual features without supervision,
M. Oquab, T. Darcet, T. Moutakanni, H. V o, M. Szafraniec, V . Khalidov, P. Fernandez, D. Haziza, F. Massa, A. El-Nouby, M. Assran, N. Ballas, W. Galuba, R. Howes, P.-Y . Huang, S.-W. Li, I. Misra, M. Rabbat, V . Sharma, G. Synnaeve, H. Xu, H. Jegou, J. Mairal, P. Labatut, A. ...
2024 arXiv
-
[23]
Vrp-sam: Sam with visual reference prompt,
Y . Sun, J. Chen, S. Zhang, X. Zhang, Q. Chen, G. Zhang, E. Ding, J. Wang, and Z. Li, “Vrp-sam: Sam with visual reference prompt,”
-
[24]
Dense cross-query-and-support attention weighted mask aggregation for few-shot segmentation,
X. Shi, D. Wei, Y . Zhang, D. Lu, M. Ning, J. Chen, K. Ma, and Y . Zheng, “Dense cross-query-and-support attention weighted mask aggregation for few-shot segmentation,” 2022. [Online]. Available: https://arxiv.org/abs/2207.08549
2022 arXiv
-
[25]
Available: https://arxiv.org/abs/2402.17726
[Online]. Available: https://arxiv.org/abs/2402.17726
-
[26]
Icl-sam: Synergizing in-context learning model and sam in medical image segmentation,
J. Hu, Y . Shang, Y . Yang, X. Guo, H. Peng, and T. Ma, “Icl-sam: Synergizing in-context learning model and sam in medical image segmentation,” inProceedings of The 7nd International Conference on Medical Imaging with Deep Learning, ser. Proceedings of Machine Learning Researc...
2024
-
[27]
Universeg: Universal medical image segmentation,
V . I. Butoi, J. J. G. Ortiz, T. Ma, M. R. Sabuncu, J. Guttag, and A. V . Dalca, “Universeg: Universal medical image segmentation,”
-
[28]
Mask3d: Mask transformer for 3d semantic instance segmentation,
J. Schult, F. Engelmann, A. Hermans, O. Litany, S. Tang, and B. Leibe, “Mask3d: Mask transformer for 3d semantic instance segmentation,” in2023 IEEE International Conference on Robotics and Automation (ICRA), 2023, pp. 8216–8223
2023
-
[29]
Masked-attention mask transformer for universal image segmenta- tion,
B. Cheng, I. Misra, A. G. Schwing, A. Kirillov, and R. Girdhar, “Masked-attention mask transformer for universal image segmenta- tion,” 2022
2022
-
[30]
Lora: Low-rank adaptation of large language models,
E. J. Hu, Y . Shen, P. Wallis, Z. Allen-Zhu, Y . Li, S. Wang, L. Wang, and W. Chen, “Lora: Low-rank adaptation of large language models,”
-
[31]
A large dataset of white blood cells containing cell locations and types, along with segmented nuclei and cytoplasm,
Z. M. Kouzehkanan, S. Saghari, S. Tavakoli, A. Mahloojifar, M. S. Nosrati, S. Ghaffari, S. Setayeshi, E. Karami, P. Sasanpour, M. H. Nasirpour, H. Yousefi, S. Jangjoo, S. Rahimzadeh, H. Rabbani, P. Nematollahy, Z. Amini, S. Nasresfahani, and A. Sadeghipour, “A large dataset of...
2022 doi
-
[33]
Deep learning for segmentation using an open large-scale dataset in 2d echocardiography,
S. Leclerc, E. Smistad, J. Pedrosa, A. Ostvik, F. Cervenansky, F. Espinosa, T. Espeland, E. A. R. Berg, P. M. Jodoin, T. Grenier, C. Lartizien, and O. Bernard, “Deep learning for segmentation using an open large-scale dataset in 2d echocardiography,”IEEE Transactions on Medica...
2019
-
[34]
Unleashing the potential of sam for medical adaptation via hierarchical decoding,
Z. Cheng, Q. Wei, H. Zhu, Y . Wang, L. Qu, W. Shao, and Y . Zhou, “Unleashing the potential of sam for medical adaptation via hierarchical decoding,” 2024. [Online]. Available: https://arxiv.org/abs/2403.18271
2024 arXiv
-
[35]
Refuge challenge: A unified framework for evaluating automated methods for glaucoma assessment from fundus photographs,
J. I. Orlando, H. Fu, J. Barbosa Breda, K. van Keer, D. R. Bathula, A. Diaz-Pinto, R. Fang, P.-A. Heng, J. Kim, J. Lee, J. Lee, X. Li, P. Liu, S. Lu, B. Murugesan, V . Naranjo, S. S. R. Phaye, S. M. Shankaranarayana, A. Sikka, J. Son, A. van den Hengel, S. Wang, J. Wu, Z. Wu, ...
2020
-
[37]
Deep learning techniques for automatic mri cardiac multi-structures segmentation and diagnosis: Is the problem solved?
O. Bernard, A. Lalande, C. Zotti, F. Cervenansky, X. Yang, P.-A. Heng, I. Cetin, K. Lekadir, O. Camara, M. A. Gonzalez Ballester, G. Sanroma, S. Napel, S. Petersen, G. Tziritas, E. Grinias, M. Khened, V . A. Kollerathu, G. Krishnamurthi, M.-M. Roh´e, X. Pennec, M. Ser- mesant,...
2018
-
[38]
Dataset of breast ultrasound images,
W. Al-Dhabyani, M. Gomaa, H. Khaled, and A. Fahmy, “Dataset of breast ultrasound images,”Data in Brief, vol. 28, p. 104863, 2020. [Online]. Available: https://www.sciencedirect.com/science/article/pii/S2352340919312181
2020
-
[39]
Unetr: Transformers for 3d medical image segmentation,
A. Hatamizadeh, Y . Tang, V . Nath, D. Yang, A. Myronenko, B. Land- man, H. R. Roth, and D. Xu, “Unetr: Transformers for 3d medical image segmentation,” inProceedings of the IEEE/CVF winter con- ference on applications of computer vision, 2022, pp. 574–584
2022
-
[40]
Swin unetr: Swin transformers for semantic segmentation of brain tumors in mri images,
A. Hatamizadeh, V . Nath, Y . Tang, D. Yang, H. Roth, and D. Xu, “Swin unetr: Swin transformers for semantic segmentation of brain tumors in mri images,” 2022. [Online]. Available: https://arxiv.org/abs/2201.01266
2022 arXiv
-
[41]
nnu-net: a self-configuring method for deep learning- based biomedical image segmentation,
F. Isensee, P. F. Jaeger, S. A. A. Kohl, J. Petersen, and K. H. Maier-Hein, “nnu-net: a self-configuring method for deep learning- based biomedical image segmentation,”Nature Methods, vol. 18, pp. 203–211, 2021. [Online]. Available: https://doi.org/10.1038/s41592- 020-01008-z
2021 doi
-
[46]
Pet image denoising based on 3d denoising diffusion probabilistic model: Evaluations on total-body datasets,
B. Yu, S. Ozdemir, Y . Dong, W. Shao, K. Shi, and K. Gong, “Pet image denoising based on 3d denoising diffusion probabilistic model: Evaluations on total-body datasets,” inInternational Conference on Medical Image Computing and Computer-Assisted Intervention. Springer, 2024, p...
2024
-
[2021]
Available: https://arxiv.org/abs/2106.09685
[Online]. Available: https://arxiv.org/abs/2106.09685
-
[2023]
Available: https://arxiv.org/abs/2304.06131
[Online]. Available: https://arxiv.org/abs/2304.06131
-
[2024]
Available: https://arxiv.org/abs/2408.00874
[Online]. Available: https://arxiv.org/abs/2408.00874
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.