REVIEW 2 major objections 8 minor 38 references
CmFNet: Cross-modal Fusion Network for Weakly-supervised Segmentation of Medical Images
T0 review · 2 major / 8 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read A triple-branch network segments tumors from CT and MR using only scribble labels, matching full supervision.
desk verdict A useful cross-modal fusion paper with strong NPC results, but the MR branch is trained on CT-only scribbles with no described registration, so the central claim is hard to verify as written. 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 triple-branch architecture plus a three-term loss. Two V-Net-style branches process CT and MR separately with different down-sampling depths (three stages for CT, four for MR), preserving detail in one and context in the other. Their feature maps are combined by the Cross-Modal Feature Fusion (CFF) module, a concatenation-plus-convolution, and the Cross-Modal Feature Enhancement (CFE) module, which aligns the third-layer features and increases receptive field before the shared decoder. Supervision is $L_{\mathrm{total}} = L_{\mathrm{ssl}} + L_{\mathrm{imr}} + L_{\mathrm{imc}}$: partial cross-entropy restricted to scribbled pixels, a multi-view conditional random field loss applied in axial, sagittal, and coronal planes, and mean-squared-error consistency pulling the cross-modal prediction toward each modality branch. The CFF module is deliberately simple; the paper argues the architecture itself, not complex attention, makes fusion effective.
What would settle it
Overlay the CT-drawn scribble masks on the corresponding MR volumes and measure their overlap with the tumor boundary visible in MR; if the masks are systematically offset, the MR branch receives corrupted labels and the reported DSC would drop when MR-native scribbles are used instead. A simpler computation: retrain the MR-specific branch with scribbles drawn directly on MR and compare to the current CT-transferred scribbles.
Extended reading notes
Core claim
The paper's central claim is that cross-modal fusion, not a more elaborate attention mechanism, carries most of the benefit in scribble-supervised segmentation. On its clinical NPC dataset, CmFNet with scribble annotations reaches 76.75±5.78 DSC and 2.69±0.89 mm ASD, exceeding the best weakly supervised baseline DMSPS (71.58±7.73 DSC, 4.70±1.81 mm ASD) and the fully supervised V-Net (73.98±7.28 DSC). With full masks the same network reports 78.95±5.99 DSC, ahead of all compared fully supervised methods including DA-VNet. On the single-modal WORD dataset, where the same CT volume is fed into both branches, the method reaches a mean DSC of 84.19, second to the task-specific DMSPS baseline but with stronger surface-distance results on several organs. The authors interpret these results as evidence that modality-specific branches preserve each image type's details while the shared branch aligns them, and that the three-term loss prevents the overfitting that sparse scribble labels usually cause.
Load-bearing premise
All three branches are trained with the same scribble mask, but the paper says that mask was drawn on CT images only; for the MR branch to receive correct supervision, the CT and MR volumes must be aligned pixel-for-pixel, and the paper does not describe any registration or alignment check.
Editorial extensions
If this is right
- Scribble-only training on paired CT and MR can match or beat a fully supervised V-Net on NPC tumor segmentation, so annotation cost could drop substantially in radiotherapy workflows.
- The same network works on single-modal CT data by feeding the same volume into both branches, giving competitive abdominal organ segmentation on WORD (mean DSC 84.19), though below the task-specific DMSPS baseline.
- Ablations show each added component contributes: CFE raises DSC from 73.76 to 75.96, adding CFF reaches 76.75, and the hybrid loss raises scribble-only training from 68.20 to 76.75, so the gains are attributed to the fusion and regularization together.
- When full masks are available, the same architecture reports 78.95 DSC, ahead of the compared fully supervised methods, suggesting the cross-modal design does not depend on weak supervision to help.
Reading between the lines
- If the CT/MR alignment assumption holds, the same triple-branch recipe should transfer to other paired modalities such as PET/CT or T1/T2 MRI; the paper only claims future work, this is an extension.
- The WORD experiment suggests the cross-modal branch behaves as a feature-sharing regularizer rather than a true modality encoder, since identical CT content is fed into both branches; this interpretation goes beyond the authors' framing.
- A testable extension the paper does not report: compare CT-transferred scribbles against MR-native scribbles for the MR branch; a large gap would indicate alignment noise rather than cross-modal learning drives part of the gain.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes CmFNet, a 3D weakly supervised segmentation network for cross-modal medical images. The architecture consists of two modality-specific branches (CT and MR) and a shared cross-modal branch, combined with CFF and CFE modules. Training uses a hybrid loss: partial cross-entropy on scribbles, a multi-view CRF loss for intra-modal regularization, and an MSE inter-modal consistency loss. Experiments on a clinical NPC dataset (CT+MR) and the WORD CT dataset compare with weakly and fully supervised baselines. The paper reports that CmFNet achieves 76.75±5.78 DSC and 2.69±0.89 mm ASD on NPC with scribbles, outperforming the listed weakly supervised baselines, and 84.19 mean DSC on WORD, ranking second behind DMSPS; with full annotations on NPC, it reports 78.95 DSC, above the fully supervised baselines listed.
Significance. If the results are reproducible, CmFNet would be a useful contribution to scribble-based cross-modal segmentation. The paper has practical strengths: it reports standard deviations, runs ablations of the fusion modules and loss terms, and includes a hyperparameter sensitivity analysis. The architectural motivation of separating modality-specific and shared features is reasonable, and the loss decomposition is clear. However, the current manuscript leaves a critical spatial-correspondence issue unresolved: scribbles are drawn only on CT, yet the same mask supervises the MR branch, and the geometry between CT and MR is not described. This, together with an imported fully-supervised comparison from earlier work, currently limits confidence in the headline numbers.
major comments (2)
- [Section IV-A3 / Section III-D1] Scribble supervision for the MR branch requires spatial correspondence that is not established. Section IV-A3 states that scribbles were manually drawn on CT images only, and the CT and MR volumes have different matrices and pixel spacings (512x512, 1.27 mm vs 384x384, 1.30 mm). Eq. (4) nevertheless applies the same mask s to y_mr, and Eq. (8) uses y_mr as a consistency target for the cross-modal output. If the MR volumes are not registered or resampled to the CT grid, the MR branch is trained on misaligned labels and the IMC loss propagates that noise. The Resampler shown in Fig. 2 is never described in the method or implementation sections. The authors must specify the registration/resampling protocol, describe how the scribble mask is transformed, and provide an alignment check or quantitative evidence that the CT-drawn scribbles are valid for the MR branch. Without this, the reported NPC gains in Table I are not reproducible from the paper as written.
- [Section IV-C3 / Table III] The fully-supervised comparison is not self-contained. The manuscript says, 'we referred to the experimental results from [25] on the NPC dataset,' but it does not establish that the data splits, preprocessing, training settings, and evaluation metric computations are identical to those used for CmFNet. Since Table III is the basis for the claim that CmFNet outperforms fully supervised methods with full annotations, the authors need to retrain all baselines under the same protocol or provide a detailed equivalence argument. Without this, the 78.95±5.99 DSC result is not directly comparable to the DA-VNet, V-Net, UNet++, and other listed numbers.
minor comments (8)
- [Section III-D2] Eq. (7) lists lambda_ct twice instead of lambda_ct and lambda_mr; since the sentence explicitly refers to both weights, this is a typo, but the equation should be corrected.
- [Abstract / Section IV-C2] The abstract states that the approach outperforms state-of-the-art weakly supervised methods without qualification, but on WORD Table II shows CmFNet ranks second overall behind DMSPS in mean DSC (84.19 vs 86.72). Please revise the abstract and conclusion to say that it is competitive with, or second-best to, DMSPS on WORD.
- [Section IV-C3] The text says Table III presents a qualitative comparison, but Table III reports quantitative DSC/ASD values; use quantitative instead.
- [Tables I-VII] Several table cells contain duplicated numbers in the text (for example, 76.75±5.7876.75±5.78 in Table I and 1.44±2.911.44±2.91 in Table II); clean these formatting artifacts before resubmission.
- [Section IV-B] The implementation section names hyperparameters lambda_1, lambda_2, alpha_1, alpha_2, while Eq. (7) and Fig. 6 use lambda_ct and lambda_mr; align the notation.
- [Section IV-C1 / Table I] The row labeled FullySup is described as an upper bound, yet Ours with scribbles (76.75 DSC) exceeds it (73.98 DSC). Clarify what architecture and supervision this row uses and avoid the term upper bound unless the model is identical to the one used for the weakly supervised comparisons.
- [Section III-C / Eq. (1)] Eq. (1) has an unclosed parenthesis after f_i_mr, and the text defines W as weight when width is intended; correct these presentation issues.
- [Section IV-C2] On WORD, CT images are fed into both modality-specific branches, so the method is not cross-modal in that setting; state this explicitly and explain how the conclusions transfer to the cross-modal NPC scenario.
Circularity Check
No significant circularity: CmFNet is an empirical architecture-and-loss paper whose reported gains rest on external baselines and ablation experiments, not on a fitted constant or a self-referential derivation.
full rationale
No step in the paper derives a prediction from a quantity that already contains that prediction. The scalar losses in Eqs. (3)-(9) are standard weak-supervision terms: partial cross-entropy over scribbled pixels, multi-view CRF regularization, and MSE consistency among branches; none of these terms is fitted to the evaluation metric or to the test set. The hyper-parameters λ_ct, λ_mr, α_1, and α_2 are tuned via the sensitivity analysis in Fig. 6 rather than solved for from the reported DSC/ASD values, so the numbers in Tables I-III are not reproductions of a fitted curve. The only self-citation is to the authors' earlier DA-VNet [25] as the source of fully-supervised baseline numbers in Table III; that citation is a benchmark-comparison choice and does not argue for CmFNet's architecture, so it is not load-bearing. The CT/MR scribble-alignment concern and the duplicated λ_ct in Eq. (7) are correctness or reproducibility risks, not circularity. The weakly supervised comparisons on NPC and WORD are against external methods (DMSPS, TV, EM, MS, USTM, S2L, and pCE) and are described as re-run from public source code, and the ablation study isolates the contribution of each proposed module. The derivation chain is therefore self-contained: the claimed improvement is an empirical result, not a consequence of the method's own definitions.
Assumptions & free parameters
free parameters (4)
- lambda_ct (weight of CT-image CRF regularization, L_imr) =
0.2
- lambda_mr (weight of MR-image CRF regularization, L_imr) =
0.2
- alpha1 (weight of MSE consistency between cross-modal and CT branch) =
0.8
- alpha2 (weight of MSE consistency between cross-modal and MR branch) =
0.8
assumptions (5)
- ad hoc to paper CT and MR volumes share the same voxel grid so that one scribble mask supervises both branches.
- domain assumption Scribble annotations on the annotated pixels are correct.
- domain assumption The public WORD dataset's scribbles are valid and follow the same protocol.
- ad hoc to paper Fully-supervised baseline numbers from [25] (DA-VNet, etc.) are comparable because identical NPC data split and evaluation protocol were used.
- domain assumption The V-Net backbone with chosen downsampling depths is a sufficient feature extractor for both modalities.
Cite this review
Pith. "Pith review of CmFNet: Cross-modal Fusion Network for Weakly-supervised Segmentation of Medical Images." pith.science (2026). https://pith.science/paper/UOPJYG4Z
@misc{pith2026250618042,
author = {Pith},
title = {Pith review of: CmFNet: Cross-modal Fusion Network for Weakly-supervised Segmentation of Medical Images},
year = {2026},
howpublished = {\url{https://pith.science/paper/UOPJYG4Z}},
note = {Machine review of arXiv:2506.18042}
}
read the original abstract
Accurate automatic medical image segmentation relies on high-quality, dense annotations, which are costly and time-consuming. Weakly supervised learning provides a more efficient alternative by leveraging sparse and coarse annotations instead of dense, precise ones. However, segmentation performance degradation and overfitting caused by sparse annotations remain key challenges. To address these issues, we propose CmFNet, a novel 3D weakly supervised cross-modal medical image segmentation approach. CmFNet consists of three main components: a modality-specific feature learning network, a cross-modal feature learning network, and a hybrid-supervised learning strategy. Specifically, the modality-specific feature learning network and the cross-modal feature learning network effectively integrate complementary information from multi-modal images, enhancing shared features across modalities to improve segmentation performance. Additionally, the hybrid-supervised learning strategy guides segmentation through scribble supervision, intra-modal regularization, and inter-modal consistency, modeling spatial and contextual relationships while promoting feature alignment. Our approach effectively mitigates overfitting, delivering robust segmentation results. It excels in segmenting both challenging small tumor regions and common anatomical structures. Extensive experiments on a clinical cross-modal nasopharyngeal carcinoma (NPC) dataset (including CT and MR imaging) and the publicly available CT Whole Abdominal Organ dataset (WORD) show that our approach outperforms state-of-the-art weakly supervised methods. In addition, our approach also outperforms fully supervised methods when full annotation is used. Our approach can facilitate clinical therapy and benefit various specialists, including physicists, radiologists, pathologists, and oncologists.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[25]
D. Meng, S. Li, B. Sheng, H. Wu, S. Tian, W. Ma, G. Wang, and X. Yan, “3d reconstruction-oriented fully automatic multi-modal tumor segmentation by dual attention-guided vnet,”The Visual Computer, vol. 39, no. 8, pp. 3183–3196, 2023
work page 2023
-
[1]
X. Luo, M. Hu, W. Liao, S. Zhai, T. Song, G. Wang, and S. Zhang, “Scribble-supervised medical image segmentation via dual-branch net- work and dynamically mixed pseudo labels supervision,” inInterna- tional Conference on Medical Image Computing and Computer-Assisted Intervention, pp. 528–538, Springer, 2022
work page 2022
-
[2]
Image segmentation using deep learning: A survey,
S. Minaee, Y . Boykov, F. Porikli, A. Plaza, N. Kehtarnavaz, and D. Terzopoulos, “Image segmentation using deep learning: A survey,” IEEE transactions on pattern analysis and machine intelligence, vol. 44, no. 7, pp. 3523–3542, 2021
2021
-
[3]
Learning deep features for discriminative localization,
B. Zhou, A. Khosla, A. Lapedriza, A. Oliva, and A. Torralba, “Learning deep features for discriminative localization,” inProceedings of the IEEE conference on computer vision and pattern recognition, pp. 2921–2929, 2016
2016
-
[4]
Weakly supervised segmentation with cross- modality equivariant constraints,
G. Patel and J. Dolz, “Weakly supervised segmentation with cross- modality equivariant constraints,”Medical image analysis, vol. 77, p. 102374, 2022
work page 2022
-
[5]
M. Han, X. Luo, X. Xie, W. Liao, S. Zhang, T. Song, G. Wang, and S. Zhang, “Dmsps: Dynamically mixed soft pseudo-label supervision for scribble-supervised medical image segmentation,”Medical Image Analysis, vol. 97, p. 103274, 2024
work page 2024
-
[6]
H. Lee and W.-K. Jeong, “Scribble2label: Scribble-supervised cell segmentation via self-generating pseudo-labels with consistency,” in Medical Image Computing and Computer Assisted Intervention–MICCAI 2020: 23rd International Conference, Lima, Peru, October 4–8, 2020, Proceedings, Part I 23, pp. 14–23, Springer, 2020
work page 2020
-
[7]
Deepcut: Object segmentation from bounding box annotations using convolutional neural networks,
M. Rajchl, M. C. Lee, O. Oktay, K. Kamnitsas, J. Passerat-Palmbach, W. Bai, M. Damodaram, M. A. Rutherford, J. V . Hajnal, B. Kainz,et al., “Deepcut: Object segmentation from bounding box annotations using convolutional neural networks,”IEEE transactions on medical imaging, vol. 36, no. 2, pp. 674–683, 2016
work page 2016
Show all 38 references
-
[8]
Pa-seg: learning from point annotations for 3d medical image segmentation using contextual regularization and cross knowledge distillation,
S. Zhai, G. Wang, X. Luo, Q. Yue, K. Li, and S. Zhang, “Pa-seg: learning from point annotations for 3d medical image segmentation using contextual regularization and cross knowledge distillation,”IEEE Transactions on Medical Imaging, 2023
2023
-
[9]
Scribformer: Transformer makes cnn work better for scribble-based medical image segmentation,
Z. Li, Y . Zheng, D. Shan, S. Yang, Q. Li, B. Wang, Y . Zhang, Q. Hong, and D. Shen, “Scribformer: Transformer makes cnn work better for scribble-based medical image segmentation,”IEEE Transactions on Medical Imaging, 2024
2024
-
[10]
Scribblesup: Scribble- supervised convolutional networks for semantic segmentation,
D. Lin, J. Dai, J. Jia, K. He, and J. Sun, “Scribblesup: Scribble- supervised convolutional networks for semantic segmentation,” inPro- ceedings of the IEEE conference on computer vision and pattern recognition, pp. 3159–3167, 2016
2016
-
[11]
Semi-supervised learning by entropy minimization,
Y . Grandvalet and Y . Bengio, “Semi-supervised learning by entropy minimization,”Advances in neural information processing systems, vol. 17, 2004
2004
-
[12]
Unsupervised total variation loss for semi-supervised deep learning of semantic segmenta- tion,
M. Javanmardi, M. Sajjadi, T. Liu, and T. Tasdizen, “Unsupervised total variation loss for semi-supervised deep learning of semantic segmenta- tion,”arXiv preprint arXiv:1605.01368, 2016
2016 arXiv
-
[13]
Weakly supervised segmentation of covid19 infection with scribble annotation on ct images,
X. Liu, Q. Yuan, Y . Gao, K. He, S. Wang, X. Tang, J. Tang, and D. Shen, “Weakly supervised segmentation of covid19 infection with scribble annotation on ct images,”Pattern recognition, vol. 122, p. 108341, 2022
2022
-
[14]
A review: Deep learning for medical im- age segmentation using multi-modality fusion,
T. Zhou, S. Ruan, and S. Canu, “A review: Deep learning for medical im- age segmentation using multi-modality fusion,”Array, vol. 3, p. 100004, 2019
2019
-
[15]
Comparing different ct, pet and mri multi-modality image combinations for deep learning- based head and neck tumor segmentation,
J. Ren, J. Eriksen, J. Nijkamp, and S. Korreman, “Comparing different ct, pet and mri multi-modality image combinations for deep learning- based head and neck tumor segmentation,”Acta Oncologica, vol. 60, pp. 1–8, 07 2021
2021
-
[16]
Hyperdense-net: a hyper-densely connected cnn for multi-modal image segmentation,
J. Dolz, K. Gopinath, J. Yuan, H. Lombaert, C. Desrosiers, and I. B. Ayed, “Hyperdense-net: a hyper-densely connected cnn for multi-modal image segmentation,”IEEE transactions on medical imaging, vol. 38, no. 5, pp. 1116–1126, 2018
2018
-
[17]
Flexible fusion network for multi-modal brain tumor segmentation,
H. Yang, T. Zhou, Y . Zhou, Y . Zhang, and H. Fu, “Flexible fusion network for multi-modal brain tumor segmentation,”IEEE Journal of Biomedical and Health Informatics, vol. 27, no. 7, pp. 3349–3359, 2023
2023
-
[18]
Modality-aware mutual learning for multi-modal medical image seg- mentation,
Y . Zhang, J. Yang, J. Tian, Z. Shi, C. Zhong, Y . Zhang, and Z. He, “Modality-aware mutual learning for multi-modal medical image seg- mentation,” inMMICCAI 2021: 24th International Conference, Stras- bourg, France, September 27–October 1, 2021, Proceedings, Part I 24, pp. 58...
2021
-
[19]
U-net: Convolutional networks for biomedical image segmentation,
O. Ronneberger, P. Fischer, and T. Brox, “U-net: Convolutional networks for biomedical image segmentation,” inMedical Image Computing and Computer-Assisted Intervention – MICCAI 2015, pp. 234–241, Springer, 2015
2015
-
[20]
3d u-net: learning dense volumetric segmentation from sparse annota- tion,
¨O. C ¸ ic ¸ek, A. Abdulkadir, S. S. Lienkamp, T. Brox, and O. Ronneberger, “3d u-net: learning dense volumetric segmentation from sparse annota- tion,” inMedical Image Computing and Computer-Assisted Intervention – MICCAI 2016, pp. 424–432, Springer, 2016
2016
-
[21]
Medical image segmentation review: The success of u-net,
R. Azad, E. K. Aghdam, A. Rauland, Y . Jia, A. H. Avval, A. Bo- zorgpour, S. Karimijafarbigloo, J. P. Cohen, E. Adeli, and D. Merhof, “Medical image segmentation review: The success of u-net,”ArXiv, vol. abs/2211.14830, 2022
2022 arXiv
-
[22]
Unet++: Re- designing skip connections to exploit multiscale features in image segmentation,
Z. Zhou, M. Siddiquee, N. Tajbakhsh, and J. Liang, “Unet++: Re- designing skip connections to exploit multiscale features in image segmentation,”IEEE Transactions on Medical Imaging, vol. 39, no. 6, pp. 1856–1867, 2020
2020
-
[23]
Densely connected convolutional networks,
G. Huang, Z. Liu, L. Van Der Maaten, and K. Q. Weinberger, “Densely connected convolutional networks,” in2017 IEEE Conference on Com- puter Vision and Pattern Recognition (CVPR), pp. 2261–2269, 2017
2017
-
[24]
V-net: Fully convolutional neural networks for volumetric medical image segmentation,
F. Milletari, N. Navab, and S.-A. Ahmadi, “V-net: Fully convolutional neural networks for volumetric medical image segmentation,” in2016 fourth international conference on 3D vision (3DV), pp. 565–571, IEEE, 2016
2016
-
[26]
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 conference on applications of computer vision, pp. 574–584, 2022
2022
-
[27]
Mamba: Linear-time sequence modeling with selective state spaces,
A. Gu and T. Dao, “Mamba: Linear-time sequence modeling with selective state spaces,”arXiv preprint arXiv:2312.00752, 2023
2023 arXiv
-
[28]
Transformers are SSMs: Generalized models and efficient algorithms through structured state space duality,
T. Dao and A. Gu, “Transformers are SSMs: Generalized models and efficient algorithms through structured state space duality,” inInterna- tional Conference on Machine Learning (ICML), 2024
2024
-
[29]
Vision mamba: Efficient visual representation learning with bidirectional state space model,
L. Zhu, B. Liao, Q. Zhang, X. Wang, W. Liu, and X. Wang, “Vision mamba: Efficient visual representation learning with bidirectional state space model,”arXiv preprint arXiv:2401.09417, 2024
2024 arXiv
-
[30]
Delving deep into rectifiers: Surpassing human-level performance on imagenet classification,
K. He, X. Zhang, S. Ren, and J. Sun, “Delving deep into rectifiers: Surpassing human-level performance on imagenet classification,”2015 IEEE International Conference on Computer Vision (ICCV), pp. 1026– 1034, 2015
2015
-
[31]
Word: A large scale dataset, bench- mark and clinical applicable study for abdominal organ segmentation from ct image,
X. Luo, W. Liao, J. Xiao, J. Chen, T. Song, X. Zhang, K. Li, D. N. Metaxas, G. Wang, and S. Zhang, “Word: A large scale dataset, bench- mark and clinical applicable study for abdominal organ segmentation from ct image,”Medical Image Analysis, vol. 82, p. 102642, 2022
2022
-
[32]
Scribble- based 3d multiple abdominal organ segmentation via triple-branch multi- dilated network with pixel-and class-wise consistency,
M. Han, X. Luo, W. Liao, S. Zhang, S. Zhang, and G. Wang, “Scribble- based 3d multiple abdominal organ segmentation via triple-branch multi- dilated network with pixel-and class-wise consistency,” inInternational Conference on Medical Image Computing and Computer-Assisted Inte...
2023
-
[33]
User-guided 3d active contour segmentation of anatomical structures: significantly improved efficiency and reliability,
P. A. Yushkevich, J. Piven, H. C. Hazlett, R. G. Smith, S. Ho, J. C. Gee, and G. Gerig, “User-guided 3d active contour segmentation of anatomical structures: significantly improved efficiency and reliability,” Neuroimage, vol. 31, no. 3, pp. 1116–1128, 2006
2006
-
[34]
Learning to segment from scribbles using multi-scale adversarial attention gates,
G. Valvano, A. Leo, and S. A. Tsaftaris, “Learning to segment from scribbles using multi-scale adversarial attention gates,”IEEE Transac- tions on Medical Imaging, vol. 40, no. 8, pp. 1990–2001, 2021
1990
-
[35]
Pytorch: An imperative style, high-performance deep learning library,
A. Paszke, S. Gross, F. Massa, A. Lerer, J. Bradbury, G. Chanan, T. Killeen, Z. Lin, N. Gimelshein, L. Antiga,et al., “Pytorch: An imperative style, high-performance deep learning library,”Advances in neural information processing systems, vol. 32, 2019
2019
-
[36]
Mumford–shah loss functional for image seg- mentation with deep learning,
B. Kim and J. C. Ye, “Mumford–shah loss functional for image seg- mentation with deep learning,”IEEE Transactions on Image Processing, vol. PP, pp. 1–1, 09 2019
2019
-
[37]
Na- sopharyngeal carcinoma segmentation based on enhanced convolutional neural networks using multi-modal metric learning,
Z. Ma, S. Zhou, X. Wu, H. Zhang, W. Yan, S. Sun, and J. Zhou, “Na- sopharyngeal carcinoma segmentation based on enhanced convolutional neural networks using multi-modal metric learning,”Physics in Medicine & Biology, vol. 64, no. 2, p. 025005, 2019
2019
-
[38]
Road extraction by deep residual u- net,
Z. Zhang, Q. Liu, and Y . Wang, “Road extraction by deep residual u- net,”IEEE Geoscience and Remote Sensing Letters, vol. PP, no. 99, pp. 1–5, 2017
2017
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.