REVIEW 4 major objections 4 minor 40 references
3D Skin Segmentation Methods in Medical Imaging: A Comparison
T0 review · 4 major / 4 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read This paper reports that an iterative region-growing skin segmentation method outperforms a CT-trained deep learning model on MRI, while the AI model provides superior automation and bed removal on CT.
desk verdict The survey is fine and the qualitative observations are plausible, but the quantitative comparison lacks registration and uses cross-modality surface distance as an accuracy proxy, so the headline claim is not established. 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 comparison rests on three components. The graphics-based method is a single-seed iterative region-growing algorithm: it floods the volume from a background pixel, marks voxels above an automatically computed skin isovalue as boundary, labels the interior, and applies this per slice with cost linear in the voxel count. For normalized intensities the paper reports that an isovalue of 0.1 works for T2 MRI and CT, while fully automated T2 MRI segmentation uses a gradient image with an isovalue of 0.01. TotalSegmentator is a deep-learning network trained on CT with 104 anatomical structures, including the body and skin; it is fully automatic but tied to its CT training distribution. The quantitative evaluation extracts each skin surface as a mesh with Marching Cubes and compares surfaces using the Hausdorff distance and the mean distance distribution.
What would settle it
Segment both modalities in a dataset with expert-drawn skin contours in co-registered CT and MRI, and compare each method's surface to those contours; if TotalSegmentator is as close or closer to the expert MRI skin than the graphics-based method, the central claim fails. Alternatively, recompute the 52-subject Hausdorff and mean distances after explicit rigid registration and check whether the graphics-based advantage persists.
Extended reading notes
Core claim
The paper's central claim is that neither approach dominates across all modalities. On CT, TotalSegmentator produces clean skin surfaces, removes the patient bed automatically, and needs no manual tuning; on MRI, it often fails to follow body boundaries because its training data are CT-only. The graphics-based region-growing method segments both CT and MRI without retraining, tracks the MRI skin boundary more closely, and runs in time linear in voxel count on standard hardware, but it leaves the patient bed in CT and yields noisier surfaces. On the 52-subject multimodal dataset, accuracy is defined as agreement between the CT-derived and MR-derived skin surfaces of the same subject, and the paper reports lower Hausdorff and mean distances for the graphics-based method, which it interprets as better cross-modality segmentation.
Load-bearing premise
The quantitative comparison defines segmentation quality as agreement between the CT and MR skin surfaces of the same subject, yet the paper reports no registration or ground truth to establish that the two acquisitions are aligned; if they are not, the measured distances reflect alignment error rather than segmentation error.
Editorial extensions
If this is right
- Multimodal workflows that must fuse CT with MRI should use the graphics-based method for the MRI skin surface rather than retraining or fine-tuning a CT-only network.
- CT-only automated pipelines, especially where removing the patient bed matters, can rely on TotalSegmentator with little or no manual intervention.
- The graphics-based method stays accurate on sub-sampled images and runs without a GPU, making it a candidate for resource-constrained settings.
- Skin surfaces from either method can support surgical planning tasks such as localizing spinal landmarks for trajectory guidance.
Reading between the lines
- If the MRI gap is caused by training distribution, then fine-tuning TotalSegmentator on MRI or applying unsupervised domain adaptation should shrink or reverse the reported advantage; the paper itself points to domain adaptation as future work.
- The paper's cross-modality coincidence metric likely mixes segmentation error with CT-MR misregistration and differences in patient positioning, since no registration or ground-truth contours are reported.
- The complementary failure modes (noise from the graphics method, holes and bed artifacts handled by the AI) suggest a hybrid pipeline could be tested: graphics-based surface extraction plus AI-based bed removal and hole filling.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper compares a graphics-based iterative region-growing skin segmentation method (Paccini et al., 2024) with TotalSegmentator, a deep-learning tool, across CT and MRI acquisitions. The authors report qualitative and quantitative comparisons using the Hausdorff distance and visual inspection, and conclude that TotalSegmentator excels at automation but struggles with MRI because of its CT-based training, while the graphics-based method performs better on MRI but introduces more noise. The quantitative analysis in Section 3.2 compares CT and MR skin segmentations of the same subject without registration and without a manual ground truth, treating surface coincidence as a proxy for accuracy.
Significance. If the comparison were valid, the paper would provide practically useful guidance for choosing between algorithmic and AI-based skin segmentation in multimodal imaging. The paper correctly identifies several real trade-offs, such as TotalSegmentator's automatic bed removal versus the graphics-based method's need for manual intervention, and the interpretability advantages of rule-based methods. However, the central quantitative claim is not established because the evaluation design does not measure segmentation accuracy in a sound way. The paper's positive aspects include a clear description of the graphics-based algorithm and a concrete dataset choice; yet the load-bearing experimental evidence is currently inadequate.
major comments (4)
- [Section 3.2, Quantitative analysis] The accuracy metric is invalid for the stated purpose. The authors compare segmentations of CT and MR images of the same subject and state that 'the best result corresponds to two coincident surfaces,' which assumes that the two acquisitions are already aligned. No registration step is reported, and the Bauer dataset is a registration benchmark with ground-truth transformations that are not used. Patient positioning, breathing-phase differences, and field-of-view differences (e.g., arms present only in MR) can produce large CT-MR surface distances even for perfect segmentations. Therefore Fig. 4 and the conclusion that the graphics-based method 'achieves better results' on MRI are not supported.
- [Section 3.2, Hausdorff distance definition] The distance measure is defined one-sided as dX1(X2) = max_{x in X1} min_{y in X2} ||x-y||_2, which is a directed distance, not the symmetric Hausdorff distance used in medical image evaluation. The surrounding text also mismatches the formula: it says the minimum distance of each vertex of X2 from vertices of X1 is computed, but the formula takes the maximum over X1. Because the measure is not symmetric, the reported values depend on which surface is labeled X1 and can be misleading. Standard symmetric metrics such as Dice similarity coefficient or symmetric surface distance should be used.
- [Section 3.2, parameter tuning] The comparison is not like-for-like. The graphics-based method is tuned by the authors for this dataset: a skin isovalue of 0.1 and a gradient isovalue of 0.01 are described as yielding 'optimal results' in Section 3.2. TotalSegmentator, by contrast, is used off-the-shelf with no MRI-specific adaptation or fine-tuning. The conclusion that the graphics-based method 'performs better for MRIs' is therefore partly forced by the evaluation design, because the authors' method has been manually calibrated to the test data while the competing method has not.
- [Table 1 and Figures 1-3] The Hausdorff distances reported in Table 1 and Figures 1-3 are distances between the two methods' surfaces, not distances to any reference standard. A low distance can occur when both methods make the same error (e.g., the head MRI case where TotalSegmentator's output 'seems to be related more to the skull than the actual skin'), so these numbers cannot be interpreted as evidence that one method is more accurate. No manual ground truth or standard accuracy metrics appear anywhere in the paper, so the abstract's claim that one method is 'better' on MRI is not backed by a valid quantitative comparison.
minor comments (4)
- [Section 3.2] There is a typo in 'Totasegmentator' in the sentence about Figure 1; it should be 'TotalSegmentator'.
- [Section 3.2] The notation for the distance is inconsistent: the text and the equation label the surfaces differently, and the equation appears to use a squared norm (||x-y||_2) without clarifying whether the distance is in millimeters or squared millimeters. The units in Table 1 and Figures 2-4 are stated as mm, so the norm should be explicitly defined.
- [Figure 2] Figure 2(a) is said to show an abdominal MRI, but the caption does not describe the color coding or the meaning of the distance distribution in detail; a reader must infer from the text which surface is red and which is green.
- [Section 4] The conclusion that the graphics-based approach is 'versatile and adaptable' is stated strongly, but the only direct evidence is the flawed quantitative analysis and a few qualitative examples. A more measured conclusion would acknowledge the limitations of the comparison.
Circularity Check
The quantitative evidence for 'graphics-based performs better on MRI' equates accuracy with CT-MR surface coincidence, so the conclusion is partly forced by the evaluation metric rather than by ground-truth comparison.
-
self definitional
[Section 3.2, Quantitative analysis (Fig. 4)]
"To assess the accuracy of the segmentation methods, we compared the segmentations produced for the same subject across the two imaging modalities, where the best result corresponds to two coincident surfaces."
The metric defines accuracy as agreement between the CT and MR skin surfaces of the same subject. The graphics-based method is a modality-agnostic threshold/region-growing algorithm that extracts the outer body boundary using the same isovalue after intensity normalisation; therefore its CT and MR surfaces coincide whenever the body outline is present in both scans. TotalSegmentator, trained on CT, produces a different MRI surface and is penalised by the same metric. The conclusion that the graphics-based method 'achieves better results' on MRI (Fig. 4) is thus a restatement of the metric's definition (accuracy = cross-modality invariance), not evidence of agreement with the true skin surface.
full rationale
The paper's central comparative claim is that the graphics-based method performs better for MRIs while TotalSegmentator struggles due to CT training. The visual comparison (Fig. 2a) provides some independent support for this. However, the quantitative analysis that is invoked to substantiate the claim defines accuracy as the coincidence of CT and MR segmentations of the same subject. Since the graphics-based method is designed to be modality-agnostic (same threshold-based boundary extraction regardless of modality), high cross-modal coincidence is built into the method; TotalSegmentator's modality-specific training ensures lower coincidence. The quantitative conclusion therefore reduces to the definition of the metric. This is a partial circularity: the metric's definition and the method's design jointly force the reported ranking. The self-citation to Paccini et al. (2024) for the method's 'generality' is not itself load-bearing for the experiments, and the paper contains independent visual evidence and computational comparisons, so the score is moderate rather than extreme.
Assumptions & free parameters
free parameters (2)
- skin isovalue =
0.1
- gradient isovalue for automated MRI =
0.01
assumptions (4)
- ad hoc to paper Surface agreement between CT and MR segmentations of the same subject is a valid measure of segmentation accuracy.
- domain assumption The public dataset by Bauer et al. (Zöllner, 2022; Bauer et al., 2021) is a representative benchmark for skin segmentation.
- ad hoc to paper The one-sided maximum-minimum distance defined in the paper is an acceptable surface difference measure.
- standard math Marching Cubes (Lorensen and Cline, 1998) produces a faithful mesh of the segmented voxel surface.
Cite this review
Pith. "Pith review of 3D Skin Segmentation Methods in Medical Imaging: A Comparison." pith.science (2026). https://pith.science/paper/LEXPO5MJ
@misc{pith2026250611852,
author = {Pith},
title = {Pith review of: 3D Skin Segmentation Methods in Medical Imaging: A Comparison},
year = {2026},
howpublished = {\url{https://pith.science/paper/LEXPO5MJ}},
note = {Machine review of arXiv:2506.11852}
}
read the original abstract
Automatic segmentation of anatomical structures is critical in medical image analysis, aiding diagnostics and treatment planning. Skin segmentation plays a key role in registering and visualising multimodal imaging data. 3D skin segmentation enables applications in personalised medicine, surgical planning, and remote monitoring, offering realistic patient models for treatment simulation, procedural visualisation, and continuous condition tracking. This paper analyses and compares algorithmic and AI-driven skin segmentation approaches, emphasising key factors to consider when selecting a strategy based on data availability and application requirements. We evaluate an iterative region-growing algorithm and the TotalSegmentator, a deep learning-based approach, across different imaging modalities and anatomical regions. Our tests show that AI segmentation excels in automation but struggles with MRI due to its CT-based training, while the graphics-based method performs better for MRIs but introduces more noise. AI-driven segmentation also automates patient bed removal in CT, whereas the graphics-based method requires manual intervention.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[1]
author Al-Faris, A.Q. , author Ngah, U.K. , author Isa, N.A.M. , author Shuaib, I.L. , year 2014 . title Breast MRI Tumour Segmentation Using Modified Automatic Seeded Region Growing Based on Particle Swarm Optimization Image Clustering , in: booktitle Soft Computing in Industrial Applications: Proceedings of the 17th Online World Conference on Soft Compu...
work page 2014
-
[2]
o nnes, C. , author Segars, W.P. , author Schad, L.R. , author Z \
author Bauer, D.F. , author Russ, T. , author Waldkirch, B.I. , author T \"o nnes, C. , author Segars, W.P. , author Schad, L.R. , author Z \"o llner, F.G. , author Golla, A.K. , year 2021 . title Generation of annotated multimodal ground truth datasets for abdominal medical image registration . journal International Journal of Computer Assisted Radiology...
work page 2021
-
[3]
author Baum, T. , author Yap, S.P. , author Karampinos, D.C. , author Nardo, L. , author Kuo, D. , author Burghardt, A.J. , author Masharani, U.B. , author Schwartz, A.V. , author Li, X. , author Link, T.M. , year 2012 . title Does vertebral bone marrow fat content correlate with abdominal adipose tissue, lumbar spine bone mineral density, and blood bioma...
work page 2012
-
[4]
author Beare, R. , author Yang, J.Y. , author Maixner, W.J. , author Harvey, A.S. , author Kean, M.J. , author Anderson, V.A. , author Seal, M.L. , year 2016 . title Automated alignment of perioperative MRI scans: A technical note and application in pediatric epilepsy surgery . journal Human Brain Mapping volume 37 , pages 3530--3543
work page 2016
-
[5]
author Bi, L. , author Pieper, S. , author Chlorogiannis, D.D. , author Golby, A.J. , author Frisken, S. , year 2024 . title Open-source, deep-learning skin surface segmentation model for cost-effective neuronavigation accessible to low-resource settings , in: booktitle Medical Imaging 2024: Image Processing , organization SPIE . pp. pages 569--575
work page 2024
-
[6]
author Bosnjak, A. , author Montilla, G. , author Villegas, R. , author Jara, I. , year 2007 . title 3D Segmentation with an Application of Level Set-method using MRI Volumes for Image Guided Surgery , in: booktitle 2007 29th Annual International Conference of the IEEE Engineering in Medicine and Biology Society , publisher IEEE . pp. pages 5263--5266
work page 2007
-
[7]
author Butz, T. , author Warfield, S.K. , author Tuncali, K. , author Silverman, S.G. , author van Sonnenberg, E. , author Jolesz, F.A. , author Kikinis, R. , year 2000 . title Pre-and Intra-operative Planning and Simulation of Percutaneous Tumor Ablation , in: booktitle Medical Image Computing and Computer-Assisted Intervention--MICCAI 2000: Third Intern...
work page 2000
-
[8]
author Caballo, M. , author Boone, J.M. , author Mann, R. , author Sechopoulos, I. , year 2018 . title An unsupervised automatic segmentation algorithm for breast tissue classification of dedicated breast computed tomography images . journal Medical Physics volume 45 , pages 2542--2559
work page 2018
Show all 40 references
-
[9]
, author Vese, L.A
author Chan, T.F. , author Vese, L.A. , year 2001 . title Active contours without edges . journal IEEE Transactions on Image Processing volume 10 , pages 266--277
2001
-
[10]
, author Alle, S
author Diaz-Pinto, A. , author Alle, S. , author Nath, V. , author Tang, Y. , author Ihsani, A. , author Asad, M. , author Pérez-García, F. , author Mehta, P. , author Li, W. , author Flores, M. , author Roth, H.R. , author Vercauteren, T. , author Xu, D. , author Dogra, P. , ...
2024
-
[11]
, author Baquero, B
author Gillot, M. , author Baquero, B. , author Le, C. , author Deleat-Besson, R. , author Bianchi, J. , author Ruellas, A. , author Gurgel, M. , author Yatabe, M. , author Al Turkestani, N. , author Najarian, K. , et al., year 2022 . title Automatic multi-anatomical skull str...
2022
-
[12]
, author Huang, Y
author Hirsch, L. , author Huang, Y. , author Parra, L.C. , year 2021 . title Segmentation of MRI head anatomy using deep volumetric networks and multiple spatial priors . journal Journal of Medical Imaging volume 8 , pages 034001--034001
2021
-
[13]
, author Jaeger, P.F
author Isensee, F. , author Jaeger, P.F. , author Kohl, S.A. , author Petersen, J. , author Maier-Hein, K.H. , year 2021 . title nn U - Net : a self-configuring method for deep learning-based biomedical image segmentation . journal Nature Methods volume 18 , pages 203--211
2021
-
[14]
, author Ghadyani, H
author Jermyn, M. , author Ghadyani, H. , author Mastanduno, M.A. , author Turner, W. , author Davis, S.C. , author Dehghani, H. , author Pogue, B.W. , year 2013 . title Fast segmentation and high-quality three-dimensional volume mesh creation from medical images for diffuse o...
2013
-
[15]
, author Liu, S
author Jing, J. , author Liu, S. , author Wang, G. , author Zhang, W. , author Sun, C. , year 2022 . title Recent advances on image edge detection: A comprehensive review . journal Neurocomputing volume 503 , pages 259--271
2022
-
[16]
, author Zhang, P
author Kamel Boulos, M.N. , author Zhang, P. , year 2021 . title Digital Twins : From Personalised Medicine to Precision Public Health . journal Journal of Personalized Medicine volume 11 , pages 745
2021
-
[17]
, author Park, T
author Khang, S. , author Park, T. , author Lee, J. , author Kim, K.W. , author Song, H. , author Lee, J. , year 2022 . title Computer- Aided Breast Surgery Framework Using a Markerless Augmented Reality Method . journal Diagnostics volume 12 , pages 3123
2022
-
[18]
, author Baldini, G
author Koitka, S. , author Baldini, G. , author Kroll, L. , author van Landeghem, N. , author Pollok, O.B. , author Haubold, J. , author Pelka, O. , author Kim, M. , author Kleesiek, J. , author Nensa, F. , et al., year 2024 a. title SAROS : A dataset for whole-body region and...
2024
-
[19]
, author Baldini, G
author Koitka, S. , author Baldini, G. , author Schmidt, C.S. , author Pollok, O.B. , author Pelka, O. , author Kohnke, J. , author Borys, K. , author Friedrich, C.M. , author Schaarschmidt, B.M. , author Forsting, M. , et al., year 2024 b. title SALT : Introducing a Framework...
2024 arXiv
-
[20]
, author Four \'e , A
author Le Troter, A. , author Four \'e , A. , author Guye, M. , author Confort-Gouny, S. , author Mattei, J.P. , author Gondin, J. , author Salort-Campana, E. , author Bendahan, D. , year 2016 . title Volume measurements of individual muscles in human quadriceps femoris using ...
2016
-
[21]
, author Chang, T.F
author Lee, C.Y. , author Chang, T.F. , author Chang, N.Y. , author Chang, Y.C. , year 2018 . title An automated skin segmentation of Breasts in Dynamic Contrast - Enhanced Magnetic Resonance Imaging . journal Scientific Reports volume 8 , pages 6159
2018
-
[22]
, author Heacock, L
author Lenchik, L. , author Heacock, L. , author Weaver, A.A. , author Boutin, R.D. , author Cook, T.S. , author Itri, J. , author Filippi, C.G. , author Gullapalli, R.P. , author Lee, J. , author Zagurovskaya, M. , author Retson, T. , author Godwin, K. , author Nicholson, J. ...
2019
-
[23]
, author Cline, H.E
author Lorensen, W.E. , author Cline, H.E. , year 1998 . title Marching cubes: A high resolution 3D surface construction algorithm , in: booktitle Seminal graphics: pioneering efforts that shaped the field , pp. pages 347--353
1998
-
[24]
, author He, Y
author Ma, J. , author He, Y. , author Li, F. , author Han, L. , author You, C. , author Wang, B. , year 2024 . title Segment anything in medical images . journal Nature Communications volume 15 , pages 654
2024
-
[25]
, author Mesrar, J
author Ognard, J. , author Mesrar, J. , author Benhoumich, Y. , author Misery, L. , author Burdin, V. , author Ben Salem, D. , year 2019 . title Edge detector-based automatic segmentation of the skin layers and application to moisturization in high-resolution 3 Tesla magnetic ...
2019
-
[26]
, year 1979
author Otsu, N. , year 1979 . title A Threshold Selection Method from Gray - Level Histograms . journal IEEE Transactions on Systems, Man, and Cybernetics volume 9 , pages 62--66
1979
-
[27]
, author Paschina, G
author Paccini, M. , author Paschina, G. , author De Beni, S. , author Stefanov, A. , author Kolev, V. , author Patan \`e , G. , year 2024 . title US & MR / CT Image Fusion with Markerless Skin Registration : A Proof of Concept . journal Journal of Imaging Informatics in Medic...
2024
-
[28]
, author Lu, J
author Pan, Z. , author Lu, J. , year 2007 . title A Bayes - Based Region - Growing Algorithm for Medical Image Segmentation . journal Computing in Science & Engineering volume 9 , pages 32--38
2007
-
[29]
, author Spadola, L
author Rosset, A. , author Spadola, L. , author Ratib, O. , year 2004 . title Osirix: an open-source software for navigating in multidimensional DICOM images . journal Journal of Digital Imaging volume 17 , pages 205--216
2004
-
[30]
, author Arganda-Carreras, I
author Schindelin, J. , author Arganda-Carreras, I. , author Frise, E. , author Kaynig, V. , author Longair, M. , author Pietzsch, T. , author Preibisch, S. , author Rueden, C. , author Saalfeld, S. , author Schmid, B. , et al., year 2012 . title Fiji: an open-source platform ...
2012
-
[31]
, year 2025
author Scientific, T.F. , year 2025 . title Amira software for 3d visualization and analysis . https://www.thermofisher.com/amira-avizo. note accessed: 2025-02-18
2025
-
[32]
, author El Hadji, S
author Scorza, D. , author El Hadji, S. , author Cortes, C. , author Bertelsen, A. , author Cardinale, F. , author Baselli, G. , author Essert, C. , author De Momi, E. , year 2021 . title Surgical planning assistance in keyhole and percutaneous surgery: A systematic review . j...
2021
-
[33]
, author Li, L
author Teng, Z. , author Li, L. , author Xin, Z. , author Xiang, D. , author Huang, J. , author Zhou, H. , author Shi, F. , author Zhu, W. , author Cai, J. , author Peng, T. , et al., year 2024 . title A literature review of artificial intelligence ( AI ) for medical image seg...
2024
-
[34]
, author Moriakov, N
author Teuwen, J. , author Moriakov, N. , author Fedon, C. , author Caballo, M. , author Reiser, I. , author Bakic, P. , author Garc \' a, E. , author Diaz, O. , author Michielsen, K. , author Sechopoulos, I. , year 2021 . title Deep learning reconstruction of digital breast t...
2021
-
[35]
, author Rosak-Szyrocka, J
author Tripathi, S. , author Rosak-Szyrocka, J. , year 2025 . title Disruptive Innovation in Medical Image Segmentation : A Comparative Study of Traditional and AI - Based Approaches , in: booktitle Impact of Artificial Intelligence on Society . publisher Chapman and Hall/CRC ...
2025
-
[36]
, author Platel, B
author Wang, L. , author Platel, B. , author Ivanovskaya, T. , author Harz, M. , author Hahn, H.K. , year 2012 . title Fully automatic breast segmentation in 3D breast MRI , in: booktitle 2012 9th IEEE International Symposium on Biomedical Imaging ( ISBI ) , publisher IEEE , a...
2012
-
[37]
, author Breit, H.C
author Wasserthal, J. , author Breit, H.C. , author Meyer, M.T. , author Pradella, M. , author Hinck, D. , author Sauter, A.W. , author Heye, T. , author Boll, D.T. , author Cyriac, J. , author Yang, S. , et al., year 2023 . title Totalsegmentator: Robust Segmentation of 104 A...
2023
-
[38]
, author Vetter, M
author Wolf, I. , author Vetter, M. , author Wegner, I. , author Nolden, M. , author Bottger, T. , author Hastenteufel, M. , author Kunert, T. , author Meinzer, H.P. , year 2005 . title The Medical Imaging Interaction Toolkit . journal Medical Image Analysis volume 9 , pages 594--604
2005
-
[39]
, author Piven, J
author Yushkevich, P.A. , author Piven, J. , author Hazlett, H.C. , author Smith, R.G. , author Ho, S. , author Gee, J.C. , author Gerig, G. , year 2006 . title User-guided 3D active contour segmentation of anatomical structures: significantly improved efficiency and reliabili...
2006
-
[40]
, year 2022
author Z \"o llner, F. , year 2022 . title Multimodal ground truth datasets for abdominal medical image registration [data] . :10.11588/data/ICSFUS
2022 doi
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.