REVIEW 4 major objections 5 minor 41 references
Promoting SAM for Camouflaged Object Detection via Selective Key Point-based Guidance
T0 review · 4 major / 5 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read A frozen SAM, prompted with automatically selected contrastive points, matches specialized camouflaged-object detectors, raising NC4K S-measure from 0.406 to 0.836.
desk verdict The headline jump in Table 2 looks real, but the paper does not prove that its selective key point generation is what causes it, and one SOTA claim is contradicted by its own table. 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 contrastive point-prompt triple produced by two cooperating components. PPT-net (Promotion Point Targeting Network) predicts, for each cell of an M-by-M grid, the probability that a camouflaged object occupies that cell, using multi-scale features from a Res2Net encoder augmented by receptive-field blocks. KPS (Key Point Selection) then chooses high-confidence, mutually distant cells as positive points, and for each positive point selects the two nearest low-confidence cells as negative points, bracketing the object's edge. Feeding these triples to SAM, a general-purpose segmentation network whose weights are never updated, converts COD from exact segmentation into coarse localization; a second SAM pass with the first mask as an additional prompt repairs boundary detail.
What would settle it
Rerun the Table 2 experiment with the selected points replaced by randomly sampled points of the same count inside and outside the object: if random prompts recover most of the 0.406-to-0.836 S-measure gain on NC4K, the key-point selection algorithm is not the driver; if they recover almost none, SAM is genuinely relying on the contrastive triples.
Extended reading notes
Core claim
The paper's central claim is that SAM's poor performance on camouflaged objects is a prompting failure, not an intrinsic limit. The mechanism is a triple of point prompts per selected location: one positive point sampled from high-confidence predictions, and two negative points from the nearest low-confidence grid cells. These triples tell SAM where the object is and roughly where its edge lies, and a second SAM pass uses the first output mask as an additional prompt to refine boundaries. On the paper's reported numbers, NC4K S-measure rises from 0.406 to 0.836, and the method reaches the top of the baseline table on the weighted and mean F-measures for the large datasets while remaining below the best edge-focused E-measures, which the authors attribute to the finite number of prompt points covering only part of the boundary.
Load-bearing premise
The entire pipeline depends on a handful of coarse positive and negative points carrying enough boundary information for SAM to produce a precise, full-boundary mask of a camouflaged object; if point prompts cannot do that for camouflage, the frozen SAM has no way to recover and the method collapses.
Editorial extensions
If this is right
- If the claim holds, COD no longer requires hand-crafted edge-, wavelet-, or frequency-domain modules: a frozen general-purpose segmenter plus a small point selector reaches comparable performance.
- SAM's documented struggles in concealed scenes become a prompt-design problem rather than evidence that the model cannot handle the task.
- On the reported metrics, the largest gains are in precision/recall-weighted measures such as weighted and mean F-measure, so the method's strength is capturing overall shape rather than exact edges.
- Because SAM stays frozen, adapting to a new concealment setting only requires training the lightweight PPT-net on grid-level probabilities, which is cheaper than training a specialized COD model from scratch.
Reading between the lines
- A natural experiment the paper does not run is a sensitivity check: if selected key points are perturbed by one grid cell, a large S-measure drop would show the precision of the point selector matters more than SAM's tolerance for coarse prompts.
- The same contrastive-point recipe may transfer to other low-contrast segmentation tasks, such as medical lesions or objects in satellite imagery, where a coarse locator could replace a domain-specific decoder.
- The grid-density comparison suggests an adaptive or non-uniform candidate grid concentrated near predicted object locations could cover small or fragmented objects better than a fixed uniform grid.
- The authors attribute some remaining errors to objects split into isolated parts, which points to a specific testable weakness: recall on multi-part objects may drop because KPS spreads only a handful of positive points across the entire image.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper addresses the question of whether the Segment Anything Model (SAM) can be made to work for Camouflaged Object Detection (COD) through automatically generated point prompts. It proposes a two-part prompt generation pipeline: PPT-net, a lightweight network that predicts, for each cell of a uniform M×M grid, the probability that a camouflaged object is present at the cell center; and a Key Point Selection (KPS) algorithm that converts these probability scores into triples of one positive and two negative points. The prompts are fed to a frozen SAM, followed by a second SAM pass in which the first mask is used as a mask prompt, following the SAMAug idea. Experiments on COD10K, NC4K, and CAMO compare the method against specialized COD baselines and report large gains over unprompted SAM (e.g., NC4K S-measure from 0.406 to 0.836, Table 2). The paper claims new state-of-the-art Fm_beta on all three datasets and Fw_beta on two datasets, and positions the work as the first to facilitate a big model for COD.
Significance. If the central attribution is verified, the paper makes a useful practical point: a frozen generalist segmenter, guided by inexpensive point-level localization, can approach specialized COD models, reducing the need for heavily engineered COD architectures. The quantitative effect in Table 2 is striking, and the training setup is honest in an important respect: PPT-net is trained on averaged ground-truth masks of the training split, SAM is frozen, and the final mask comes from SAM on held-out test images, so there is no self-referential circularity. The main gap is that the experiments do not isolate the proposed selective key-point mechanism from trivial prompt baselines; the missing controls are essential before the paper can claim that selective key points, rather than SAM's own promptable segmentation capability, are responsible for the observed improvement. The SOTA claims also need to be reconciled with the paper's own Table 1.
major comments (4)
- [§4.2, Table 1] The paper states in §4.2 that "our approach establishes a new state-of-the-art in terms of Fm_beta on all the 3 datasets," but Table 1 does not support this. On CAMO, the proposed method obtains Fm_beta=0.790 while ZoomNet obtains 0.794; on the same dataset Fw_beta is 0.742, tied with SiNetV2 and below ZoomNet's 0.752. The abstract's claim of results "over the existing methods on 3 data sets under 6 metrics" is also broader than what the table shows. Please correct the SOTA claims to name the exact metrics and datasets on which the method leads, and discuss the CAMO shortfall.
- [§3.4, Table 2 vs. Tables 4/5] The headline evidence (Table 2: NC4K S-measure 0.406 to 0.836) compares unprompted SAM with the full pipeline, which includes both the KPS point triples and the second SAM pass with mask feedback. The ablations show that the second pass adds only about 0.005 in S-measure (Table 5) and the 10 negative points add about 0.003 (Table 4), but no experiment isolates the proposed PPT-net/KPS prompt generator from trivial prompt baselines. A control with uniformly sampled grid points, a single centroid positive point, or oracle points derived from the ground-truth mask is needed to verify that "selective key point" selection, rather than SAM's own ability to segment from any interior point, is responsible for the gain. Without such controls, the central attribution in the title and contributions is not established.
- [§3.3, Algorithm 1] Algorithm 1 is not executable as written because line 4 computes arg max over d(C_i, P) while P is initialized to the empty set; the distance to an empty set is undefined, so the first positive point cannot be selected by the stated rule. The surrounding text says the first PP is the point with the highest prediction score, but this rule does not appear in the pseudocode. Also, lines 17-18 use d(C_i, P_j) with P_j a single point, while the earlier definition d(C_i, P) is for a collection; please clarify the notation for point-to-point and point-to-set distances. These issues make the central selection algorithm non-reproducible as described.
- [§4.3, Tables 3-5] The ablations select the grid size, number of positive/negative points, and number of SAM iterations by performance on the COD10K test split, but the paper does not describe a held-out validation split or a hyperparameter selection procedure. For example, Table 3 shows that 32×32 candidates outperform 16×16 (S-measure 0.834 vs. 0.826), yet the main results use 16×16. Since these hyperparameters directly determine the prompts, the reported numbers may reflect test-set tuning; please report how K, M, the confidence thresholds in Eq. (6), and the number of iterations were chosen, and provide sensitivity results on NC4K and CAMO.
minor comments (5)
- [Throughout] The term "promotion" is used throughout where "prompt" is standard (e.g., abstract, §1, Fig. 2 caption); please define this terminology at first use to avoid confusion.
- [§3.3] There is a typo in "receptive filed" which should be "receptive field," and in §4.3 "has a higher chance" should be "have a higher chance."
- [References] References [19] and [20] are the same paper (Le et al., Anabranch network for camouflaged object segmentation); please merge them.
- [§4.1] Please specify the exact train/test split of COD10K (the table reports 2,026 test images) and clarify how NC4K and CAMO are used for evaluation; the sentence "we train our method only on COD10K data set" is ambiguous.
- [Abstract and §1] The claim that this is "the first work to facilitate big model for COD" is not substantiated against prior prompt-based SAM-COD adaptations; please cite and discuss the relevant literature or soften the novelty claim.
Circularity Check
No circularity: PPT-net is trained on coarsened ground truth, but evaluation is on held-out data with frozen SAM; no self-citation is load-bearing and no prediction reduces to its inputs by construction.
full rationale
The paper's chain is: PPT-net predicts point-presence probabilities from multi-scale features (Eqs. 1-5), supervised by MSE against average-pooled ground-truth masks (Eq. 3); KPS converts these scores into positive/negative point triples (Algorithm 1); frozen SAM produces the final segmentation, optionally with a second mask-feedback pass (Sec. 3.4). The only sense in which the supervision signal resembles the evaluation target is that AvgPooling(Mask) is a coarsened version of the ground truth, but this is ordinary supervised training on a training split followed by evaluation on held-out test sets; the final SAM output is never set equal to the training target by construction. No parameter is fitted to the test metric and then reported as a prediction. The paper's references to SAM, SinetV2, and SAMAug are external prior works, not the present authors' own results, and no load-bearing claim rests on a self-citation or on an imported uniqueness theorem. The skeptic's concern that Table 2 does not include a trivial-prompt or random-point control is a legitimate experimental-isolation concern about whether the gain is caused by the selective KPS points, but an omitted control is not circularity: nothing in the paper's equations forces the improvement to be equivalent to its inputs. The ablations (Tables 4 and 5) show small contributions from additional negative points and mask feedback, but they do not define the headline result into existence. The paper also honestly acknowledges limitations in edge-focused metrics and multi-part objects, which further indicates the results are not simply renamed inputs. Therefore the derivation is self-contained with respect to the circularity criteria, and the score is 0.
Assumptions & free parameters
free parameters (5)
- Number of positive prompts K =
5
- Grid size M =
16 (32x32 ablated but not used in main table)
- Confidence thresholds for L1/L2/L3 =
0.9 / 0.75 / 0.5
- Negative points per positive =
2
- Number of SAM iterations =
2
assumptions (4)
- domain assumption SAM, when given positive and negative point prompts, can segment camouflaged objects accurately enough for competitive COD.
- domain assumption Average pooling of the binary ground-truth mask over grid cells provides valid supervision for point-presence prediction.
- ad hoc to paper Hand-set confidence thresholds (0.9, 0.75, 0.5) partition points into reliable positive, ambiguous, and background categories in a way that transfers across datasets.
- domain assumption Training only on COD10K generalizes to NC4K and CAMO.
Cite this review
Pith. "Pith review of Promoting SAM for Camouflaged Object Detection via Selective Key Point-based Guidance." pith.science (2026). https://pith.science/paper/AOMZ7PWP
@misc{pith2026250509123,
author = {Pith},
title = {Pith review of: Promoting SAM for Camouflaged Object Detection via Selective Key Point-based Guidance},
year = {2026},
howpublished = {\url{https://pith.science/paper/AOMZ7PWP}},
note = {Machine review of arXiv:2505.09123}
}
read the original abstract
Big model has emerged as a new research paradigm that can be applied to various down-stream tasks with only minor effort for domain adaption. Correspondingly, this study tackles Camouflaged Object Detection (COD) leveraging the Segment Anything Model (SAM). The previous studies declared that SAM is not workable for COD but this study reveals that SAM works if promoted properly, for which we devise a new framework to render point promotions: First, we develop the Promotion Point Targeting Network (PPT-net) to leverage multi-scale features in predicting the probabilities of camouflaged objects' presences at given candidate points over the image. Then, we develop a key point selection (KPS) algorithm to deploy both positive and negative point promotions contrastively to SAM to guide the segmentation. It is the first work to facilitate big model for COD and achieves plausible results experimentally over the existing methods on 3 data sets under 6 metrics. This study demonstrates an off-the-shelf methodology for COD by leveraging SAM, which gains advantage over designing professional models from scratch, not only in performance, but also in turning the problem to a less challenging task, that is, seeking informative but not exactly precise promotions.
Figures
Reference graph
Works this paper leans on
-
[1]
In: 2009 IEEE conference on computer vision and pattern recogni- tion
Achanta, R., Hemami, S., Estrada, F., Susstrunk, S.: Frequency-tuned salient re- gion detection. In: 2009 IEEE conference on computer vision and pattern recogni- tion. pp. 1597–1604. IEEE (2009) 11
work page 2009
-
[2]
arXiv preprint arXiv:2304.12600 (2023) 5
Ahmadi, M., Lonbar, A.G., Sharifi, A., Beris, A.T., Nouri, M., Javidi, A.S.: Appli- cation of segment anything model for civil infrastructure defect assessment. arXiv preprint arXiv:2304.12600 (2023) 5
arXiv 2023
-
[3]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
Chen, A., Yao, Y., Chen, P.Y., Zhang, Y., Liu, S.: Understanding and improving visual prompting: A label-mapping perspective. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 19133–19143 (2023) 5
work page 2023
-
[4]
IEEE Transactions on Geoscience and Remote Sensing (2024) 5
Chen, K., Liu, C., Chen, H., Zhang, H., Li, W., Zou, Z., Shi, Z.: Rsprompter: Learn- ing to prompt for remote sensing instance segmentation based on visual foundation model. IEEE Transactions on Geoscience and Remote Sensing (2024) 5
work page 2024
-
[5]
arXiv preprint arXiv:2307.01187 (2023) 5, 10
Dai, H., Ma, C., Liu, Z., Li, Y., Shu, P., Wei, X., Zhao, L., Wu, Z., Zhu, D., Liu, W., et al.: Samaug: Point prompt augmentation for segment anything model. arXiv preprint arXiv:2307.01187 (2023) 5, 10
arXiv 2023
-
[6]
In: Proceedings of the IEEE international conference on computer vision
Fan, D.P., Cheng, M.M., Liu, Y., Li, T., Borji, A.: Structure-measure: A new way to evaluate foreground maps. In: Proceedings of the IEEE international conference on computer vision. pp. 4548–4557 (2017) 11
work page 2017
-
[7]
arXiv preprint arXiv:1805.10421 (2018) 11
Fan,D.P.,Gong,C.,Cao,Y.,Ren,B.,Cheng,M.M.,Borji,A.:Enhanced-alignment measure for binary foreground map evaluation. arXiv preprint arXiv:1805.10421 (2018) 11
arXiv 2018
-
[8]
IEEE transactions on pattern analysis and machine intelligence44(10), 6024–6042 (2021) 4, 8, 10, 11
Fan, D.P., Ji, G.P., Cheng, M.M., Shao, L.: Concealed object detection. IEEE transactions on pattern analysis and machine intelligence44(10), 6024–6042 (2021) 4, 8, 10, 11
work page 2021
Show all 41 references
-
[9]
In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition
Fan, D.P., Ji, G.P., Sun, G., Cheng, M.M., Shen, J., Shao, L.: Camouflaged object detection. In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition. pp. 2777–2787 (2020) 1, 4, 10, 11, 12
2020
-
[10]
arXiv preprint arXiv:2304.07764 (2023) 5 14
Giannakis, I., Bhardwaj, A., Sam, L., Leontidis, G.: Deep learning universal crater detection using segment anything model (sam). arXiv preprint arXiv:2304.07764 (2023) 5 14
2023 arXiv
-
[11]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
He, C., Li, K., Zhang, Y., Tang, L., Zhang, Y., Guo, Z., Li, X.: Camouflaged ob- ject detection with feature decomposition and edge reconstruction. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 22046–22055 (2023) 2, 4, 10, 11
2023
-
[12]
arXiv preprint arXiv:2311.16140 (2023) 2, 5
He, F., Yang, Z., Gao, M., Poudel, B., Dhas, N.S.E.S., Gyawali, R., Dhakal, A., Cheng, J., Xu, D.: Adapting segment anything model (sam) through prompt-based learning for enhanced protein identification in cryo-em micrographs. arXiv preprint arXiv:2311.16140 (2023) 2, 5
2023 arXiv
-
[13]
arXiv preprint arXiv:2306.13731 (2023) 2, 5
Hu, X., Xu, X., Shi, Y.: How to efficiently adapt large segmentation model (sam) to medical images. arXiv preprint arXiv:2306.13731 (2023) 2, 5
2023 arXiv
-
[14]
Huang, Z., Dai, H., Xiang, T.Z., Wang, S., Chen, H.X., Qin, J., Xiong, H.: Feature shrinkagepyramidforcamouflagedobjectdetectionwithtransformers.In:Proceed- ings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 5557–5566 (2023) 4
2023
-
[15]
segment anything
Ji, G.P., Fan, D.P., Xu, P., Cheng, M.M., Zhou, B., Van Gool, L.: Sam strug- gles in concealed scenes–empirical study on" segment anything". arXiv preprint arXiv:2304.06022 (2023) 3, 5
2023 arXiv
-
[16]
In: European Conference on Computer Vision
Jia, M., Tang, L., Chen, B.C., Cardie, C., Belongie, S., Hariharan, B., Lim, S.N.: Visual prompt tuning. In: European Conference on Computer Vision. pp. 709–727. Springer (2022) 5
2022
-
[17]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
Jia, Q., Yao, S., Liu, Y., Fan, X., Liu, R., Luo, Z.: Segment, magnify and reiterate: Detecting camouflaged objects the hard way. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 4713–4722 (2022) 4, 11
2022
-
[18]
arXiv preprint arXiv:2304.02643 (2023) 2, 5, 11
Kirillov, A., Mintun, E., Ravi, N., Mao, H., Rolland, C., Gustafson, L., Xiao, T., Whitehead, S., Berg, A.C., Lo, W.Y., et al.: Segment anything. arXiv preprint arXiv:2304.02643 (2023) 2, 5, 11
2023 arXiv
-
[19]
Computer vision and image understanding 184, 45–56 (2019) 4
Le, T.N., Nguyen, T.V., Nie, Z., Tran, M.T., Sugimoto, A.: Anabranch network for camouflaged object segmentation. Computer vision and image understanding 184, 45–56 (2019) 4
2019
-
[20]
Computer vision and image understanding 184, 45–56 (2019) 10 15
Le, T.N., Nguyen, T.V., Nie, Z., Tran, M.T., Sugimoto, A.: Anabranch network for camouflaged object segmentation. Computer vision and image understanding 184, 45–56 (2019) 10 15
2019
-
[21]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
Li, A., Zhang, J., Lv, Y., Liu, B., Zhang, T., Dai, Y.: Uncertainty-aware joint salient object and camouflaged object detection. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 10071–10081 (2021) 4
2021
-
[22]
In: Proceedings of the IEEE/CVF Winter Conference on Appli- cations of Computer Vision
Liu, J., Zhang, J., Barnes, N.: Modeling aleatoric uncertainty for camouflaged object detection. In: Proceedings of the IEEE/CVF Winter Conference on Appli- cations of Computer Vision. pp. 1445–1454 (2022) 4, 11
2022
-
[23]
ACM Computing Surveys55(9), 1–35 (2023) 5
Liu, P., Yuan, W., Fu, J., Jiang, Z., Hayashi, H., Neubig, G.: Pre-train, prompt, and predict: A systematic survey of prompting methods in natural language processing. ACM Computing Surveys55(9), 1–35 (2023) 5
2023
-
[24]
In: Proceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition
Liu, W., Shen, X., Pun, C.M., Cun, X.: Explicit visual prompting for low-level structure segmentations. In: Proceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition. pp. 19434–19445 (2023) 6
2023
-
[25]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
Lv, Y., Zhang, J., Dai, Y., Li, A., Liu, B., Barnes, N., Fan, D.P.: Simultane- ously localize, segment and rank the camouflaged objects. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 11591– 11601 (2021) 4, 10
2021
-
[26]
Margolin, R., Zelnik-Manor, L., Tal, A.: How to evaluate foreground maps? In: Proceedings of the IEEE conference on computer vision and pattern recognition. pp. 248–255 (2014) 11
2014
-
[27]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
Oh, C., Hwang, H., Lee, H.y., Lim, Y., Jung, G., Jung, J., Choi, H., Song, K.: Blackvip: Black-box visual prompting for robust transfer learning. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 24224–24235 (2023) 5
2023
-
[28]
Pang, Y., Zhao, X., Xiang, T.Z., Zhang, L., Lu, H.: Zoom in and out: A mixed-scale tripletnetworkforcamouflagedobjectdetection.In:ProceedingsoftheIEEE/CVF Conference on computer vision and pattern recognition. pp. 2160–2170 (2022) 4, 11
2022
-
[29]
In: International conference on machine learning
Radford, A., Kim, J.W., Hallacy, C., Ramesh, A., Goh, G., Agarwal, S., Sastry, G., Askell, A., Mishkin, P., Clark, J., et al.: Learning transferable visual models from natural language supervision. In: International conference on machine learning. pp. 8748–8763. PMLR (2021) 5
2021
-
[30]
In: Proceedings of the IEEE conference on computer 16 vision and pattern recognition
Redmon, J., Divvala, S., Girshick, R., Farhadi, A.: You only look once: Unified, real-time object detection. In: Proceedings of the IEEE conference on computer 16 vision and pattern recognition. pp. 779–788 (2016) 6
2016
-
[31]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
Sohn, K., Chang, H., Lezama, J., Polania, L., Zhang, H., Hao, Y., Essa, I., Jiang, L.: Visual prompt tuning for generative transfer learning. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 19840– 19851 (2023) 6
2023
-
[32]
In: Proceedings of the 31st ACM International Conference on Multimedia
Sun, J., Ibrahim, M., Hall, M., Evtimov, I., Mao, Z.M., Ferrer, C.C., Hazirbas, C.: Vpa: Fully test-time visual prompt adaptation. In: Proceedings of the 31st ACM International Conference on Multimedia. pp. 5796–5806 (2023) 6
2023
-
[33]
arXiv preprint arXiv:2207.00794 (2022) 10, 11
Sun, Y., Wang, S., Chen, C., Xiang, T.Z.: Boundary-guided camouflaged object detection. arXiv preprint arXiv:2207.00794 (2022) 10, 11
2022 arXiv
-
[34]
arXiv preprint arXiv:2304.04709 (2023) 3, 5
Tang, L., Xiao, H., Li, B.: Can sam segment anything? when sam meets camou- flaged object detection. arXiv preprint arXiv:2304.04709 (2023) 3, 5
2023 arXiv
-
[35]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
Wei, Q., Zhang, H., Yong, J.H.: Focused and collaborative feedback integration for interactive image segmentation. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 18643–18652 (2023) 6
2023
-
[36]
arXiv preprint arXiv:2304.12620 (2023) 2, 5
Wu, J., Fu, R., Fang, H., Liu, Y., Wang, Z., Xu, Y., Jin, Y., Arbel, T.: Medical sam adapter: Adapting segment anything model for medical image segmentation. arXiv preprint arXiv:2304.12620 (2023) 2, 5
2023 arXiv
-
[37]
arXiv preprint arXiv:2304.06790 (2023) 2, 5
Yu, T., Feng, R., Feng, R., Liu, J., Jin, X., Zeng, W., Chen, Z.: Inpaint anything: Segment anything meets image inpainting. arXiv preprint arXiv:2304.06790 (2023) 2, 5
2023 arXiv
-
[38]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
Zhai, Q., Li, X., Yang, F., Chen, C., Cheng, H., Fan, D.P.: Mutual graph learning for camouflaged object detection. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 12997–13007 (2021) 4
2021
-
[39]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
Zhong, Y., Li, B., Tang, L., Kuang, S., Wu, S., Ding, S.: Detecting camouflaged object in frequency domain. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 4504–4513 (2022) 2, 4
2022
-
[40]
International Journal of Computer Vision130(9), 2337–2348 (2022) 5
Zhou, K., Yang, J., Loy, C.C., Liu, Z.: Learning to prompt for vision-language models. International Journal of Computer Vision130(9), 2337–2348 (2022) 5
2022
-
[41]
In: Proceedings of the AAAI Conference on Artificial Intelligence
Zhu, H., Li, P., Xie, H., Yan, X., Liang, D., Chen, D., Wei, M., Qin, J.: I can find you! boundary-guided separated attention network for camouflaged object detec- tion. In: Proceedings of the AAAI Conference on Artificial Intelligence. vol. 36, pp. 3608–3616 (2022) 11 17
2022
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.