Abstract
Introduction
Accurate landmark detection is essential for precise analysis of anatomical structures, supporting diagnosis, treatment planning, and monitoring in patients with spinal deformities. Conventional methods rely on laborious landmark identification by medical experts, which motivates automation. The proposed deep learning pipeline processes bi-planar radiographs to determine spinopelvic parameters and Cobb angles without manual supervision.
Methods
The dataset used for training and evaluation consisted of 555 bi-planar radiographs from un-instrumented patients, which were manually annotated by medical professionals. The pipeline performed a pre-processing step to determine regions of interest, including the cervical spine, thoracolumbar spine, sacrum, and pelvis. For each ROI, a segmentation network was trained to identify vertebral bodies and pelvic landmarks. The U-Net architecture was trained on 455 bi-planar radiographs using binary cross-entropy loss. The post-processing algorithm determined spinal alignment and angular parameters based on the segmentation output. We evaluated the pipeline on a test set of 100 previously unseen bi-planar radiographs, using the mean absolute difference between annotated and predicted landmarks as the performance metric. The spinopelvic parameter predictions of the pipeline were compared to the measurements of two experienced medical professionals using intraclass correlation coefficient (ICC) and mean absolute deviation (MAD).
Results
The pipeline was able to successfully predict the Cobb angles in 61% of all test cases and achieved mean absolute differences of 3.3° (3.6°) and averaged ICC of 0.88. For thoracic kyphosis, lumbar lordosis, sagittal vertical axis, sacral slope, pelvic tilt, and pelvic incidence, the pipeline produced reasonable outputs in 69%, 58%, 86%, 85%, 84%, and 84% of the cases. The MAD was 5.6° (7.8°), 4.7° (4.3°), 2.8 mm (3.0 mm), 4.5° (7.2°), 1.8° (1.8°), and 5.3° (7.7°), while the ICC was measured at 0.69, 0.82, 0.99, 0.61, 0.96, and 0.70, respectively.
Conclusion
Despite limitations in patients with severe pathologies and high BMI, the pipeline automatically predicted coronal and sagittal spinopelvic parameters, which has the potential to simplify clinical routines and large-scale retrospective data analysis.
Similar content being viewed by others
Explore related subjects
Discover the latest articles and news from researchers in related subjects, suggested using machine learning.Avoid common mistakes on your manuscript.
Introduction
In recent years, the analysis of spinal alignment has gained paramount importance in the diagnosis, treatment, and monitoring of spinal diseases, particularly in conditions, such as adolescent idiopathic scoliosis (AIS) [1] and adult spinal deformity (ASD) [2]. These conditions, characterized by complex spinal curvatures and deformities, present significant challenges in clinical management and treatment planning [3, 4]. In the realm of spinal surgery, the primary objective is often to restore spinal alignment to as close to normal as possible. Surgery that aims to restore spinal alignment can profoundly impact a patient’s quality of life as it is critical for reducing pain, improving function, and halting the progression of deformity. Understanding the intricate relationships between various spinopelvic alignment parameters is essential for uncovering the underlying causes of spinal deformities and optimizing treatment strategies. In the past decades, spinopelvic parameters have gained more attention as they have been associated with lower back pain [5, 6]. Parameters such as lumbar lordosis or sacral slope are used more frequently to restore spinal balance by surgical treatment [7]. Further, they appear to be predictive for complications in spinal fusion surgery [8].
The advent of modern imaging techniques has revolutionized diagnosis and monitoring of spinal diseases. However, the conventional approach to analyzing spinal alignment relies heavily on manual identification and measurement of anatomical landmarks on radiographic images. This process is time-consuming, subject to inter- and intra-observer variabilities, and often slows down clinical workflows.
Several approaches have been introduced to automatically extract position data and calculate spinal parameters, e.g., the Cobb angle in scoliosis patients [9] or lumbar parameters, such as sacral slope and pelvic tilt [10]. Thus far, no approach has established a pipeline for the automated and combined acquisition of the spine’s and pelvis positional data and calculation of the spinopelvic parameters. Besides, the used datasets to test the model are often too small or lack diversity to represent spinal pathologies in clinical situations [10].
In this context, we introduce a novel deep learning pipeline designed to process bi-planar radiographs for the automated determination of spinopelvic parameters without the need for manual intervention (Fig. 1). This study assessed and validated the extraction of the following spinopelvic parameters from biplanar radiographs: Cobb angle (Cobb°), thoracic kyphosis (THK°), lumbar lordosis (LL°), sagittal vertical axis (SVA), sacral slope (SS°), pelvic tilt (PT°), and pelvic incidence (PI°). By reducing reliance on manual measurements, the proposed approach aims to mitigate the subjective elements inherent in traditional methods and provide a more standardized, efficient, and reproducible framework for spinal deformity analysis.
Methods
Subjects
After approval of the institutional review board and the local ethics commission, a medical professional selected and anonymized bi-planar radiographs from the institutional imaging database. Anterior–posterior and lateral radiographs were acquired with the EOS® Imaging System between October 2011 and November 2020. Patients with the inability to stand and spinal instrumentation were excluded. The selection comprised 555 bi-planar radiographs from 393 patients between 8 and 92 years (mean 42.2 ± 24.3 years).
Data acquisition
On all anterior–posterior and lateral radiographs, 232 patient-specific anatomical landmarks were annotated by clinicians and medical students using a custom annotation tool written in MATLAB (Version 9.9 R2020b, The MathWorks, Inc.). The annotations were used to create binary segmentation masks of the thoracolumbar spine (C7–L5), the sacral endplate and the femur heads. The separate segmentations of C7 and the sacral endplate provided upper and lower boundaries for the segmentation of all vertebrae in between. The rectangular vertebrae masks were generated using the four vertebra corner coordinates. The sacral endplate masks consisted of a circular region on the anterior and posterior sacral endplate corner point respectively. The mask of the femoral head was created by fitting a circle through the three annotated points on it. Of 555 radiographs, 100 were randomly chosen and retained as the hold-out data (test set), while the remaining 455 image pairs were used for training the deep learning pipeline (training set).
Pipeline
As presented in Fig. 1, the pipeline was divided into three subtasks: preprocessing, segmentation, and postprocessing. To simplify the segmentation task, input images and masks were processed in MATLAB (Version 9.9 R2020b, The MathWorks, Inc.) and automatically cropped into four regions of interest (ROI): neck, spine, sacrum, and femur. The desired cropping window was determined by creating histograms of projected intensity through summing up pixel values in the horizontal and vertical directions [9]. Horizontally, the head, shoulder girdle, and pelvis height showed prominent maxima, while the neck and abdomen level showed identifiable minima. In the vertical direction, a single peak was identified. Local maxima and minima, which exceeded a normed intensity threshold of 0.6, were used to crop out the four ROIs on images and masks. Downsizing and normalization completed the preprocessing step.
For each ROI, a modified U-Net with inception modules [11, 12] was implemented using TensorFlow library for Python. The detailed architecture of the segmentation network is depicted in Fig. 2. The training for each individual network was conducted on a NVIDIA RTX A6000 GPU by minimizing the binary cross-entropy loss using the Adam optimizer [13] with an initial learning rate of 0.0005. The network weights were initialized using He-normal initialization scheme [14] and all networks were trained for 500 epochs with a batch size of 20. The training set was further subdivided with ratio of 85:15, leaving 387 samples for training and 68 samples for hyperparameter tuning (validation set).
The postprocessing was conducted with a custom MATLAB program. For each ROI, the output of the segmentation network was turned into binary segmentation masks using a threshold of 0.7. Inversion of the preprocessing steps ensured a correct superimposition of the predicted mask onto the anterior–posterior and lateral input radiographs. First, the neck ROI used to localize the C7 vertebral body was merged into the spine ROI to rectify incorrect predictions of C7 within the spinal ROI. Similarly, the segmentation of the sacral endplate points was used to correct vertebra segmentations caudally. Then, an algorithm was employed to identify the corner points in the rectangular segmentations of the vertebral bodies. The midpoint of the sacral endplate was determined by averaging the anterior and posterior sacral endplate point predictions. The program derived the midpoints of the anterior and posterior femoral heads and transferred all landmarks into input image coordinates. Finally, the corner points of the vertebral bodies, the sacral endplate points, and the centers of the femoral head were used to calculate the spinopelvic parameters. An example prediction of the calculated parameters can be seen in Fig. 2.
Evaluation of clinical parameter predictions
The pipeline was evaluated separately for the preprocessing, segmentation, and postprocessing subtasks on a test set of 100 previously unseen radiographs. The preprocessing step was evaluated based on the number of radiographs that were processed correctly. The preprocessing was considered as successful, if the ground truth completely lay inside the processed image and was not cut off. The segmentation quality was evaluated using the F1 score (or Dice coefficient), while the landmark predictions were compared to the corresponding manual annotations using the mean absolute deviation (MAD). The segmentation was considered as reasonable, if the spine ROI prediction consisted of at least 18 vertebral bodies and a prediction for each ROI was made. To evaluate the accuracy of the final parameter predictions, a blinded medical expert measured the spinopelvic parameters in the test set using mediCAD Software (Classic Version 6.0.0.9, mediCAD Hectec GmbH). The inter-rater reliability among three different medical experts was assessed using the intraclass correlation coefficient (ICC) based on a subset of 10 bi-planar radiographs. To assess the intra-rater reliability, one expert repeated three measurements at three-day intervals using the same subset and metric. For both intra- and inter-rater reliabilities, the ICC type was chosen as: two-way mixed effects, single measurement, and absolute agreement. The reliability of the results was classified into four grades according to the value of the ICC: excellent (0.9–1.0), good (0.75–0.9), moderate (0.5–0.75), and poor (< 0.5) [15].
Results
The testing dataset comprised 58 scoliosis patients in total. The distribution according to Cobb [16] and the classification of thoracic kyphosis following the Lenke classification [17] is shown in Table 1.
According to the guidelines from [15], all three raters showed good agreement (0.75–0.9) for the Cobb angles (Table 2). In case of LL, SS, and PT, the raters achieved an excellent agreement (> 0.9) but only good and moderate (0.5–0.75) ICC values for SVA and THK, respectively. The inter-rater error averaged over all raters for the Cobb angles was 6.2° (8.9°) and varied between 2.2° (3.9°) and 7.1° (7.7°) for THK, LL, SS, and PT. The mean absolute distance for SVA was 6.2 mm (10.0 mm). The intra-rater reliability for the Cobb angles was excellent but moderate for LL, SS, and PT. The intra-rater agreement was good and excellent for SVA and THK, respectively.
The pipeline’s processing performance is summarized in Table 3. The automated preprocessing of the images, i.e., the image cropping and resizing, successfully created correct ROIs in 533 out of 555 samples (96%). As the
pipeline successfully predicted all spinopelvic parameters for 45 out of 100 patient images, a reasonable segmentation was achieved in 45% of all cases. Table 3 shows the segmentation results and the F1 score for each ROI. The prediction of the spinopelvic parameters was only conducted for patients with complete segmentations (61 frontal and 45 frontal + lateral). Patients with any predictions from a region missing were excluded and not further processed. Predictions of the frontal parameters (predicted Cobb angles ≤ 10° in patients without scoliosis were also considered as reasonable) were made in 61 of 100 patients. 34 out of 58 (58.6%) predictions were successfully made in patients with scoliosis.
Table 4 shows the MAD and SD for a single corner point between the manual annotations and the predicted coordinates for the thoracic region (including C7), the lumbar region and both regions combined. One patient was excluded, as a foreign object on the radiograph led to a faulty segmentation. Further, Table 4 presents the error between the anterior and posterior sacral endplate point, respectively femoral head and between the midpoint of both anterior and posterior points (sacral endplate midpoint and hip axis midpoint).
The agreement between the spinopelvic parameter predictions of the pipeline and the rater is presented in Table 5. For the Cobb angles, the pipeline showed good to excellent agreement with the clinician. From the sagittal parameters, THK and SS exhibited moderate agreement while LL was in good agreement and SVA and PT in excellent agreement with the rater. This is also reflected in the inter-rater error, which averaged 3.3° (3.6°) for the Cobb angles and varied between 1.8° (1.8°) and 5.6° (7.8°) for the sagittal parameters. The mean absolute distance for SVA was 2.8 mm (3.0 mm). The histograms in Fig. 3 show the error distribution for all successful spinopelvic parameter predictions.
Discussion
The introduction of deep learning methods in the analysis of bi-planar radiographs represents a significant advancement in the field of spinal deformity diagnosis and monitoring. The proposed deep learning pipeline demonstrated substantial potential in automating the process of determining spinopelvic parameters and Cobb angles, traditionally reliant on time-consuming manual identification by medical experts. In contrast to comparable approaches, it combines the prediction for both planes and is not limited to a certain spinal region [18,19,20] or age group [9]. In this study, the Cobb angle’s predictive accuracy showed a mean absolute deviation (MAD) of 3.3°, which is slightly higher than the 2.4° deviation found in a recent pediatric study [9]. Furthermore, 80% of the predictions were within ± 5° of the true values, which aligns with the expected range of human observer error [21, 22]. The study found that most predicted values for sagittal spinopelvic parameters, including THK, LL, SS, PT, and PI, were within ± 5° of the ground truth. Additionally, 85% of SVA measurements were within the acceptable error margin of ± 5.7 mm [21]. Recent studies have reported similar results, which are summarized in Table 6. It is worth noting that only a few extreme outliers were observed in lateral parameters. THK° errors were mainly due to incorrect vertebrae segmentation, while SS° discrepancies resulted from inconsistent sacral endplate level predictions. The predicted angles and SVA metrics closely matched those of recent studies, with SVA slightly exceeding approach [10].
The main limitation of the presented pipeline was that it only fully processed 45% of the unseen test data. The robustness on the coronal parameters was slightly superior with 61% processed radiographs. In rare cases, deceptive peaks in the vertical intensity distributions occurred due to prostheses, implants, severe obesity, pronounced thoracic kyphosis, or hand placement, which caused the histogram-based ROI selection to fail. Potential improvements for preprocessing include fine-tuning intensity thresholds or choosing more generous cropping windows. However, as preprocessing proved to be very robust (96% processing rate), the pipeline’s failure was mainly attributed to the segmentation task, which was crucial for correct post-processing and parameter prediction. The F1 scores for the segmentation of the ROIs ranged from 0.49 to 0.86. The spine ROI achieved the highest scores (0.86 for both frontal and lateral), while the sacral endplate (0.49 anterior and 0.52 posterior circle) and femoral head (0.83 anterior and 0.76 posterior) achieved lower scores. Previous studies have reported higher F1 scores, such as 0.92 in [9], and 0.93 in [23] for the frontal spine and 0.94 in [23], for the segmentation of the lateral spine. In radiographic analysis, segmentation accuracy is often diminished in obese or osteoporotic patients due to a reduction in bone signal. The thoracic region is particularly prone to segmentation errors due to the superimposition of adjacent anatomical structures like humerus, scapula, and ribs. While there is no existing literature to benchmark the segmentation F1-scores for the sacral endplate or femoral head, their scores are notably lower than those for the spine region, with the anterior and posterior femoral head at 0.83 and 0.76, and the anterior and posterior sacral endplate point at 0.49 and 0.52, respectively. However, these lower F1 scores should not be interpreted as indicative of poor segmentation quality. As Rohlfing pointed out [24], F1 scores cannot be directly compared across different segmentation targets due to size variance. As the segmentation output threshold was set to 0.7, further adjustments could optimize segmentations and output predictions. Additionally, sophisticated postprocessing could allow parameter prediction from qualitatively less accurate segmentations.
Despite the large age range of the patients, the pipeline was able to learn the correct segmentation and annotation of anatomical features. Fine-tuning the model for individual age classes may improve accuracy but minimizes the generalizability of the model. Manual annotation of anatomical landmarks introduces some bias to the training data. However, using multiple annotators and a programmatic annotation protocol reduced the risk of single source bias. Like other data-driven approaches, the limited availability of annotated medical imaging data hinders the training and refinement of deep learning models, which may affect their accuracy and generalizability. Given the complexity of the segmentation task, the current data selection may be underpowered compared to [10] and [25] who used datasets of over 2000 radiographs. Further, metallic implants caused failures in the intensity-based pre-processing and segmentation. It is important to note that patients with spinal instrumentation must also be considered for effective automated analysis in diverse patient populations. For future works, the extension of the dataset is mandatory to increase overall robustness and accuracy of landmark identification and parameter predictions.
Conclusion
Overall, the interclass correlation coefficient (ICC) between expert measurements and predicted parameters was excellent for Cobb° 2, Cobb° 3, sagittal vertical axis (SVA), and pelvic tilt (PT°). Good values were achieved for Cobb° 1, total Cobb°, and lumbar lordosis (LL°), while thoracic kyphosis (THK°), sacral slope (SS°), and pelvic incidence (PI°) achieved only moderate results. Although segmentation of sacral endplate points and femoral heads showed promising results, vertebra segmentation requires enhancement, particularly in the thoracic region. Despite the discussed challenges, the results demonstrate the feasibility of using deep learning to predict spinopelvic parameters from frontal and lateral radiographs. The pipeline achieved comparable results to other recent approaches and indicates promising avenues for reducing bias in clinical routines and facilitating extensive retrospective data analysis.
Data availability
The datasets generated during and/or analysed during the current study are not publicly available due to reasons of sensitivity. The code is available from the corresponding author upon reasonable request.
References
Weinstein SL, Dolan LA, Cheng JCY et al (2008) Adolescent idiopathic scoliosis. Lancet Lond Engl 371:1527–1537. https://doi.org/10.1016/S0140-6736(08)60658-3
Youssef JA, Orndorff DO, Patty CA et al (2013) Current status of adult spinal deformity. Glob Spine J 3:51–62. https://doi.org/10.1055/s-0032-1326950
Cheng JC, Castelein RM, Chu WC et al (2015) Adolescent idiopathic scoliosis. Nat Rev Dis Primer 1:15030. https://doi.org/10.1038/nrdp.2015.30
Diebo BG, Shah NV, Boachie-Adjei O et al (2019) Adult spinal deformity. Lancet Lond Engl 394:160–172. https://doi.org/10.1016/S0140-6736(19)31125-0
Misir A, Kizkapan TB, Tas SK et al (2019) Lumbar spine posture and spinopelvic parameters change in various standing and sitting postures. Eur Spine J 28:1072–1081. https://doi.org/10.1007/s00586-018-5846-z
Tonosu J, Oka H, Watanabe K et al (2021) Characteristics of the spinopelvic parameters of patients with sacroiliac joint pain. Sci Rep 11:5189. https://doi.org/10.1038/s41598-021-84737-1
Li J, Zhang D, Shen Y, Qi X (2020) Lumbar degenerative disease after oblique lateral interbody fusion: sagittal spinopelvic alignment and its impact on low back pain. J Orthop Surg 15:326. https://doi.org/10.1186/s13018-020-01837-w
Sebaaly A, Gehrchen M, Silvestre C et al (2020) Mechanical complications in adult spinal deformity and the effect of restoring the spinal shapes according to the Roussouly classification: a multicentric study. Eur Spine J 29:904–913. https://doi.org/10.1007/s00586-019-06253-1
Imran A-A-Z, Huang C, Tang H, et al (2020) Fully-Automated Analysis of Scoliosis from Spinal X-Ray Images. In: 2020 IEEE 33rd International Symposium on Computer-Based Medical Systems (CBMS). pp 114–119
Yeh Y-C, Weng C-H, Huang Y-J et al (2021) Deep learning approach for automatic landmark detection and alignment analysis in whole-spine lateral radiographs. Sci Rep 11:7618. https://doi.org/10.1038/s41598-021-87141-x
Ronneberger O, Fischer P, Brox T (2015) U-Net: Convolutional Networks for Biomedical Image Segmentation. In: Navab N, Hornegger J, Wells WM, Frangi AF (eds) Medical image computing and computer-assisted intervention – MICCAI 2015. Springer International Publishing, Cham, pp 234–241
Dolz J, Desrosiers C, Ben Ayed I (2019) IVD-Net: Intervertebral Disc Localization and Segmentation in MRI with a Multi-modal UNet. In: Zheng G, Belavy D, Cai Y, Li S (eds) Computational methods and clinical applications for spine imaging. Springer International Publishing, Cham, pp 130–143
Kingma DP, Ba J (2017) Adam: A Method for Stochastic Optimization
He K, Zhang X, Ren S, Sun J (2015) Delving Deep into Rectifiers: Surpassing Human-Level Performance on ImageNet Classification. 2015 IEEE International conference on computer vision (ICCV). IEEE, Santiago, Chile, pp 1026–1034
Koo TK, Li MY (2016) A guideline of selecting and reporting intraclass correlation coefficients for reliability research. J Chiropr Med 15:155–163. https://doi.org/10.1016/j.jcm.2016.02.012
Cobb J (1948) Outline for study of scoliosis. Instr Course Lect Ann Arbor 5:261
Lenke LG, Betz RR, Harms J et al (2001) Adolescent idiopathic scoliosis: a new classification to determine extent of spinal arthrodesis. J Bone Joint Surg Am 83:1169–1181
Schwartz JT, Cho BH, Tang P et al (2021) Deep learning automates measurement of spinopelvic parameters on lateral lumbar radiographs. Spine 46:E671–E678. https://doi.org/10.1097/BRS.0000000000003830
Korez R, Putzier M, Vrtovec T (2020) A deep learning tool for fully automated measurements of sagittal spinopelvic balance from X-ray images: performance evaluation. Eur Spine J Off Publ Eur Spine Soc Eur Spinal Deform Soc Eur Sect Cerv Spine Res Soc 29:2295–2305. https://doi.org/10.1007/s00586-020-06406-7
Cina A, Bassani T, Panico M et al (2021) 2-step deep learning model for landmarks localization in spine radiographs. Sci Rep 11:9482. https://doi.org/10.1038/s41598-021-89102-w
Kyrölä KK, Salme J, Tuija J et al (2018) Intra- and Interrater Reliability of Sagittal Spinopelvic Parameters on Full-Spine Radiographs in Adults With Symptomatic Spinal Disorders. Neurospine 15:175–181. https://doi.org/10.14245/ns.1836054.027
Cassar-Pullicino VN, Eisenstein SM (2002) Imaging in scoliosis: what, why and how? Clin Radiol 57:543–562. https://doi.org/10.1053/crad.2001.0909
Zhang L, Shi L, Cheng JC-Y et al (2021) LPAQR-Net: efficient vertebra segmentation from biplanar whole-spine radiographs. IEEE J Biomed Health Inform 25:2710–2721. https://doi.org/10.1109/JBHI.2021.3057647
Rohlfing T (2012) Image similarity and tissue overlaps as surrogates for image registration accuracy: widely used but unreliable. IEEE Trans Med Imaging 31:153–163. https://doi.org/10.1109/TMI.2011.2163944
Ha AY, Do BH, Bartret AL et al (2022) Automating scoliosis measurements in radiographic studies with machine learning: comparing artificial intelligence and clinical reports. J Digit Imaging 35:524–533. https://doi.org/10.1007/s10278-022-00595-x
Wu H, Bailey C, Rasoulinejad P, Li S (2018) Automated comprehensive adolescent idiopathic scoliosis assessment using MVC-Net. Med Image Anal 48:1–11. https://doi.org/10.1016/j.media.2018.05.005
Galbusera F, Niemeyer F, Wilke H-J et al (2019) Fully automated radiological analysis of spinal disorders and deformities: a deep learning approach. Eur Spine J 28:951–960. https://doi.org/10.1007/s00586-019-05944-z
Acknowledgements
This research was supported by a NVIDIA hardware grant and the authors thank the Promedica Stiftung, Chur, for financial support.
Funding
Open access funding provided by University of Zurich. No funding was received for this work.
Author information
Authors and Affiliations
Contributions
Conceptualization: Jonas Widmer, Stefan Lang; Methodology & Software: Stefan Lang, Moritz Jokeit, Ji Hyun Kim; Data curation: Lukas Urbanschitz, Luca Fisler, Carlos Torrez, Frédéric Cornaz; Formal analysis and investigation: Stefan Lang, Ji Hyun Kim; Writing—original draft preparation: Moritz Jokeit, Stefan Lang; Writing—review and editing: All authors; Funding acquisition: Jonas Widmer, Mazda Farshad, Jess G. Snedeker; Resources: Mazda Farshad; Supervision: Jonas Widmer, Jess G. Snedeker.
Corresponding author
Ethics declarations
Conflict of interest
There was no external source of funding for this study. MF reports being a consultant for Arthrex and Medacta, Board member and recipient of research support from Medacta and fellowship support from DePuy Synthes. MF and JW report stock ownership of Moving Spine AG. JGS receives inventor royalties based on University of Zurich IP licensed to ZuriMED Technologies AG. All the other authors report no conflicts of interest.
Additional information
Publisher's Note
Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.
Rights and permissions
Open Access This article is licensed under a Creative Commons Attribution 4.0 International License, which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons licence, and indicate if changes were made. The images or other third party material in this article are included in the article's Creative Commons licence, unless indicated otherwise in a credit line to the material. If material is not included in the article's Creative Commons licence and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder. To view a copy of this licence, visit http://creativecommons.org/licenses/by/4.0/.
About this article
Cite this article
Lang, S., Jokeit, M., Kim, J.H. et al. Anatomical landmark detection on bi-planar radiographs for predicting spinopelvic parameters. Spine Deform 13, 423–431 (2025). https://doi.org/10.1007/s43390-024-00990-0
Received:
Accepted:
Published:
Issue Date:
DOI: https://doi.org/10.1007/s43390-024-00990-0