Skip to main content
Radiology: Artificial Intelligence logoLink to Radiology: Artificial Intelligence
. 2023 Jun 21;5(4):e220158. doi: 10.1148/ryai.220158

Conquering the Cobb Angle: A Deep Learning Algorithm for Automated, Hardware-Invariant Measurement of Cobb Angle on Radiographs in Patients with Scoliosis

Abhinav Suri 1,, Sisi Tang 1, Daniel Kargilis 1, Elena Taratuta 1, Bruce J Kneeland 1, Grace Choi 1, Alisha Agarwal 1, Nancy Anabaraonye 1, Winnie Xu 1, James B Parente 1, Ashley Terry 1, Anita Kalluri 1, Katie Song 1, Chamith S Rajapakse 1
PMCID: PMC10388214  PMID: 37529207

Abstract

Scoliosis is a disease estimated to affect more than 8% of adults in the United States. It is diagnosed with use of radiography by means of manual measurement of the angle between maximally tilted vertebrae on a radiograph (ie, the Cobb angle). However, these measurements are time-consuming, limiting their use in scoliosis surgical planning and postoperative monitoring. In this retrospective study, a pipeline (using the SpineTK architecture) was developed that was trained, validated, and tested on 1310 anterior-posterior images obtained with a low-dose stereoradiographic scanning system and radiographs obtained in patients with suspected scoliosis to automatically measure Cobb angles. The images were obtained at six centers (2005–2020). The algorithm measured Cobb angles on hold-out internal (n = 460) and external (n = 161) test sets with less than 2° error (intraclass correlation coefficient, 0.96) compared with ground truth measurements by two experienced radiologists. Measurements, produced in less than 0.5 second, did not differ significantly (P = .05 cutoff) from ground truth measurements, regardless of the presence or absence of surgical hardware (P = .80), age (P = .58), sex (P = .83), body mass index (P = .63), scoliosis severity (P = .44), or image type (low-dose stereoradiographic image vs radiograph; P = .51) in the patient. These findings suggest that the algorithm is highly robust across different clinical characteristics. Given its automated, rapid, and accurate measurements, this network may be used for monitoring scoliosis progression in patients.

Keywords: Cobb Angle, Convolutional Neural Network, Deep Learning Algorithms, Pediatrics, Machine Learning Algorithms, Scoliosis, Spine

Supplemental material is available for this article.

© RSNA, 2023

Keywords: Cobb Angle, Convolutional Neural Network, Deep Learning Algorithms, Pediatrics, Machine Learning Algorithms, Scoliosis, Spine


Summary

The proposed neural network automatically and accurately measured the Cobb angle on radiographs with various imaging conditions (surgical hardware obstructing the spine, inconsistent region imaged) in patients with scoliosis.

Key Points

  • ■ The SpineTK neural network architecture measured Cobb angles on radiographs in under 0.5 second with less than 2° mean error compared with ground truth measurements made by radiologists, each with 20 years of experience.

  • ■ There was no evidence of a difference in network measurement error after stratifying images based on presence or absence of surgical hardware and different patient characteristics (age, sex, body mass index, and scoliosis severity; all P > .05).

  • ■ This network can be used to monitor scoliosis progression in patients and highlights the utility of landmark detection networks (such as SpineTK) in musculoskeletal radiology applications.

Introduction

Scoliosis is a common deformation of the spine, estimated to affect 2%–4% of adolescents and more than 8% of adults in the United States (1,2). The deformation is caused by lateral curvature (or multiple curvatures) of the spine and can result in chronic back pain, respiratory distress or infection, and increased risk of fractures (35). Treatments include both surgical and nonoperative interventions (6,7).

Currently, a physical examination is used to preliminarily screen individuals for radiologic evaluation if scoliosis is suspected (8). Upon referral to a radiologist, patients undergo standing anterior-posterior radiography for spinal curvature quantification with use of the Cobb angle, which is the angle between the maximally tilted superior and inferior vertebral endplates (9). A Cobb angle of 10° or greater indicates scoliosis and represents the current reference standard in diagnosis (9). Additionally, rapid changes in Cobb angle may indicate the urgent need for surgical intervention. Individuals can be referred for surgical correction of scoliosis based on Cobb angle grading and a number of other clinical factors (10). Following surgery, postoperative patient management includes monitoring the Cobb angle to determine whether the rate of scoliotic curvature development decreases or stops (11). Furthermore, Cobb angles have been shown to have intra- and interobserver reliability values of ±9.6° and ±11.8°, respectively (12). With the aid of computerized programs (requiring manual input), interclass correlation coefficients have been reported to be as high as 0.96 when measuring a coronal Cobb angle (13).

Considering the large volume of radiographs obtained and high associated human effort for annotation, tools for automated Cobb angle measurements pose potential clinical benefit. Studies on accurate automated Cobb angle measurements have been performed, but prior implementations have included the use of precropped images and excluded or did not reference patients with hardware present, limiting clinical applicability (1423). Given that implanted hardware is often present in patients with prior spinal alignment surgeries, an ideal solution to automated Cobb angle measurements would be both hardware-invariant and readily applicable to baseline radiographs for screening.

Herein, we report the development and application of a region-based neural network architecture that is hardware-invariant (ie, capable of measuring Cobb angles even if extensive hardware is present). We also report the performance of the network across a diverse patient sample with varying clinical characteristics. Last, we compare this network's Cobb angle measurements to measurements made by two highly experienced radiologists.

Materials and Methods

Deep Learning System Overview

A neural network architecture was designed to perform two tasks: (a) detect vertebral bodies and (b) locate the four corner points on each vertebral body (corresponding to the top and bottom endplates). The vertebral body bounding boxes could then be fit to a 6th degree polynomial (24). Vertebral bodies closest to the inflection points of the curve were considered end points of the curve in Cobb angle calculations (the endplates of these vertebrae form the Cobb angle). This network architecture, called SpineTK, was studied for use in the task of vertebral deformity quantification and was retrained for the purpose Cobb angle measurement (25,26). An overview of the architecture of the system can be found in Figure 1 along with the full pipeline for Cobb angle measurement.

Figure 1:

Overview of network and Cobb angle pipeline. Starting at the bottom left: An anteroposterior radiographic image is input into the algorithm. The image is then processed by the SpineTK neural network (modified mask–region-based convolutional neural network [Mask-RCNN] architecture). Further explanation of the structure of the network (convolutions, etc), along with details on how to calculate Cobb angles from the vertebral body corner points, can be found in Appendix S1. Vertebral body corner points and centroids can then be located (under “step 1 output”). The centroids are used to fit a curve, which is then used to find the points of infection (“step 2 output”). The endplates of vertebrae with centroids closest to the points of inflection are used to measure the Cobb angle (“step 3 output” and “another example output”).

Overview of network and Cobb angle pipeline. Starting at the bottom left: An anteroposterior radiographic image is input into the algorithm. The image is then processed by the SpineTK neural network (modified mask–region-based convolutional neural network [Mask-RCNN] architecture). Further explanation of the structure of the network (convolutions, etc), along with details on how to calculate Cobb angles from the vertebral body corner points, can be found in Appendix S1. Vertebral body corner points and centroids can then be located (under “step 1 output”). The centroids are used to fit a curve, which is then used to find the points of infection (“step 2 output”). The endplates of vertebrae with centroids closest to the points of inflection are used to measure the Cobb angle (“step 3 output” and “another example output”).

Dataset and Annotation Description

In this retrospective study, radiographs were used to train, evaluate, and test our network. Institutional review board approval was obtained for the study, and imaging studies were downloaded and analyzed in a Health Insurance Portability and Accountability Act–compliant manner. Low-dose stereoradiographic scanning system images (hereafter, EOS images) (EOS Imaging) were obtained from 2005 to 2020 at the University of Pennsylvania radiology centers (n = 5) using associated anterior-posterior EOS scanners. The images were obtained in individuals with indications shown in the flow diagram in Figure S1. All radiographs were acquired in different individuals. The network was trained and validated on EOS images (n = 509 for training, n = 180 for validation). For the testing dataset, we used 460 EOS images and an additional 161 radiographs from an external public dataset (27); we added the external test dataset to include radiographs (after the network was trained). The resulting split is noted in Table 1 (47.7% reserved for testing data). Sample size for this study was chosen based on all images available in our laboratory (with the minimum number of samples in the test set calculated to be 310, assuming the following noninferiority conditions: P = .05, 1 − β = 0.90, SD = 1.5, d = 0.5). The 161 radiographs in the external dataset came from the Jordan University of Science and Technology (27 images were excluded from original dataset because they already had written or digital Cobb angle markings [n = 20] or were cell phone images of radiographs [n = 7]). Final average image dimensions for each dataset are reported in Table 1. Information about imaging conditions for the radiographs is limited, except that individuals were imaged when standing and that digital stitching was used to image the full spine.

Table 1:

Demographic Characteristics of the Dataset

graphic file with name ryai.220158.tbl1.jpg

Each source Digital Imaging and Communications in Medicine image from the EOS scans was loaded into memory (using Pydicom; https://pydicom.github.io) and to the 0–255 range (see Appendix S1, section 1, for details). All images were resized to 800 × 800 pixels, as was used in the original SpineTK publication (25), to avoid retraining the backbone feature extractor network. These images were then split into training (n = 509), validation (n = 180), and internal testing (n = 460) datasets. Radiographs (n = 161) were already formatted appropriately and were added as a separate external dataset (621 total images in the testing dataset; these images were not used to train the network). Training and validation data were used in a fivefold cross-validation scheme to determine the best fold for final testing (hyperparameters chosen by means of grid search). Information on aggregate dataset characteristics can be found in Table 1 (training and validation characteristics reported on the fold used to ultimately test the network). To increase the size of the network and expand the set of conditions the network was exposed to, the training data were expanded by a factor of 10 with random augmentations (see Appendix S1, section 1, for list; there were 5090 images after augmentation).

Four annotators (G.C., A.A., N.A., and W.X., research assistants with hundreds to thousands of hours of musculoskeletal annotation experience) and two musculoskeletal radiologists (E.T. and B.J.K., each with at least 20 years of experience) produced Cobb angle measurements and key point annotations for each image. Further details about annotation procedures can be found in Appendix S1, section 1. Results from a reproducibility study (evaluating agreement between annotator and radiologist measurements) can be found in Appendix S1, section 2. This substudy showed that the agreement between annotators and experienced radiologists was 0.94 (using a two-way random mixed effects model), indicating a high degree of agreement between the two annotator types (intraclass correlation coefficient >0.90 indicates excellent agreement) (28). All test set annotations made by the annotators were checked and adjusted (if needed) by the expert radiologists (43 adjusted of 621 images).

Neural network training.— The SpineTK network architecture was trained on a Google CoLab instance using the aforementioned training data in a fivefold cross-validation scheme (25). To prevent overfitting, early stopping was used to cut short training time only if the change in loss at 100 epoch intervals was 10% or less (final epoch count on fold used to train network = 2100). Network hyperparameters (batch size, number of images generated per batch) were also tuned (with use of grid search) to minimize the total loss in the network when averaged across the fivefold validation loss. Further details about the network design can be found in Appendix S1, section 3. Additionally, training and validation loss curves on the best fold (defined as the fold with the lowest total network loss) are provided in Figure S2. The full code for all trained use cases of the network is available at the following repository with documentation: https://github.com/abhisuri97/SpineTK.

Statistical analysis.— The primary metric of evaluation on the holdout test set was the difference between the Cobb angle predicted by the network versus the angle found by human annotators. Additionally, we reported the intraclass correlation coefficient and coefficient of variation by using the two-way random mixed-effects model (intraclass correlation coefficient >0.90 is deemed excellent agreement; coefficient of variation values closer to 0 indicate a high degree of agreement) (28). We also stratified the angle measurement error metric by age category (by decade), sex, body mass index (BMI), hardware presence (yes or no), and severity of scoliosis. Furthermore, we reported Cobb angle measurements in comparison with those generated by the musculoskeletal radiologist annotator (radiologist expert measurement) to measure the network's ability to match an experienced radiologist's measurements. Significance of the error differences when stratifying by clinical characteristics were reported using a standard two-sample t test (in the case of sex and hardware stratification) or analysis of variance (in the case of age category, severity of scoliosis, and BMI), with the null hypothesis that the difference in angle measurements between groups is not significant. P < .05 was considered to indicate a statistically significant difference. Parametric tests were appropriate for use because of the normal distribution of errors (Shapiro-Wilk test [P < .05 suggests lack of normality], P = .31). The statistical tests were calculated using the statsmodels package (version 0.11.0; https://www.statsmodels.org/stable/release/version0.11.html) in Python (29).

Results

Cobb angles were measured by the algorithm on the test set of 621 images (internal: n = 460; external: n = 161); the mean patient age was 58.3 years ± 25.1 (SD) (68.3% female) in the internal test set and 16.3 years ± 4.1 (75.1% female) in the external test set. Over the entire test set, the Cobb angle measurement error (annotator-measured Cobb angle minus algorithm-measured Cobb angle) was quantified on the major Cobb angle (because it is the one used to determine a clinical diagnosis of scoliosis). The mean absolute Cobb angle measurement error was found to be 1.16° ± 0.90. The mean squared Cobb angle measurement error was 2.18°. Among the test set images annotated by experienced radiologists only (n = 100), the mean absolute Cobb angle measurement error was 1.45° ± 1.19, and the mean squared Cobb angle measurement error was 3.54°. Overall agreement between the algorithm predictions and the radiologist raters was 0.96 (95% CI: 0.93, 0.99), with a coefficient of variation of 8.29%. Of note, the network and annotators picked the same end points 92.51% of the time (1149 of 1242 vertebrae endplates).

To quantify whether the Cobb angle measurements produced by the algorithm vary by patient clinical characteristics, we stratified Cobb angle measurement errors by each of the following: presence of large amount of hardware on the image (ie, surgical pins, screws, rods, pacemakers, and other hardware that obstructs part of the spine) versus absence (ie, no hardware or minor hardware, such as electrocardiogram leads), sex of the patient, BMI range, scoliosis angle severity, and age range (see Table 1 or Fig 2 for cut points). We further report results on both our internal test set from our institution and institutional partners (internal test set, all EOS images) and the external test set (separate institution, all radiographs). We found no evidence of a difference in algorithm measurement errors between the hardware (t test pooled test set: P = .80), sex (t test pooled test set: P = .83), BMI (analysis of variance pooled test set: df = 3; P = .63), scoliosis or Cobb angle severity (analysis of variance pooled test set: df = 3; P = .44), and age categories (analysis of variance pooled test set: df = 6; P = .58). We also found no evidence of a difference in image type (EOS vs radiograph) errors (t test pooled test set: P = .51). Table 2 shows the individual errors (mean error ± 1 SD) by category, along with individual P values calculated for the internal and external test datasets for the aforementioned characteristics. Figure 2B2F shows the distribution of Cobb angle measurement errors. Figure 2G shows a confusion matrix of the overall accuracy of scoliosis degree classification (all categories showed greater than 90% classification accuracy, and two patients were misclassified as not having scoliosis). Per this confusion matrix analysis, the network predicted the correct scoliosis category for 96.6% of patients (600 of 621), with no false-negative interpretations (ie, no individuals with scoliosis were diagnosed as not having scoliosis). Figure 2H shows example results of major Cobb angle measurements on EOS images and radiographs.

Figure 2:

Main Cobb angle measurement results. (A) Bland-Altman plot for Cobb angle errors (y-axis shows the difference between the predicted [ie, from the neural network] and manually measured Cobb angle; x-axis shows the mean difference between the predicted and manual Cobb angle). (B–F) Box and whiskers plots, where red dots represent radiographs (XR) (external test set) and purple dots represent EOS images (internal test set). Boxes indicate the IQR, and whiskers represent 1.5 × IQR ± first or third quartile, as appropriate. Plots show the measurement error (difference between predicted and manually measured) stratified by (B) hardware status (hardware present or not on the image), (C) patient sex, (D) Cobb angle range (see Table 1 for meaning of cut points), (E) patient body mass index (BMI) status (see Table 1 caption for meaning of cut points), and (F) patient age (by decade of life). (G) Confusion matrix of accuracy of classification (based on cut points for scoliosis severity). Raw numbers indicate number of patients (number of correctly predicted patients in that class of scoliosis severity over true number of patients in that class of scoliosis severity). (H) Representative example images of predicted versus actual Cobb angle measurements for cases ranging from minor to major scoliosis with varying degrees of hardware obstruction. pt = patient.

Main Cobb angle measurement results. (A) Bland-Altman plot for Cobb angle errors (y-axis shows the difference between the predicted [ie, from the neural network] and manually measured Cobb angle; x-axis shows the mean difference between the predicted and manual Cobb angle). (B–F) Box and whiskers plots, where red dots represent radiographs (XR) (external test set) and purple dots represent EOS images (internal test set). Boxes indicate the IQR, and whiskers represent 1.5 × IQR ± first or third quartile, as appropriate. Plots show the measurement error (difference between predicted and manually measured) stratified by (B) hardware status (hardware present or not on the image), (C) patient sex, (D) Cobb angle range (see Table 1 for meaning of cut points), (E) patient body mass index (BMI) status (see Table 1 caption for meaning of cut points), and (F) patient age (by decade of life). (G) Confusion matrix of accuracy of classification (based on cut points for scoliosis severity). Raw numbers indicate number of patients (number of correctly predicted patients in that class of scoliosis severity over true number of patients in that class of scoliosis severity). (H) Representative example images of predicted versus actual Cobb angle measurements for cases ranging from minor to major scoliosis with varying degrees of hardware obstruction. pt = patient.

Table 2:

Errors by Category

graphic file with name ryai.220158.tbl2.jpg

Discussion

We presented a deep learning algorithm that can automatically produce accurate Cobb angle measurements from anterior-posterior EOS radiographs. This method had a mean absolute angle measurement error of 1.16°, showed a strong agreement with manually annotated Cobb angle measurements made by experienced radiologists (intraclass correlation coefficient, 0.96, indicating excellent agreement [28] and matching prior studies in this metric [13]), and was statistically invariant across a number of clinical characteristics (hardware presence, sex, BMI, scoliosis severity, age, and image type). Furthermore, this network was highly accurate in detecting scoliosis for all scoliosis grades (greater than 90% accuracy across all severity types). The network can produce accurate measurements in a variety of clinical conditions, such as a high amount of hardware obstructing parts of the spine, severe scoliosis, different imaging positions, and different windows of the body imaged. Last, the network's high performance on the external test set demonstrates its generalizability (the network was trained on EOS images only and still created accurate measurements on radiographs). Furthermore, this network has the ability to aid in curvature calculation for EOS systems among patients who have hardware, where EOS scan–derived angles had previously only been validated in hardware-free individuals (30).

In comparison with other models attempting automated Cobb angle measurement, our network has a number of qualitative advantages in terms of validating its clinical efficacy (Table S1). Notably, the effectiveness of an algorithm in evaluating images in individuals with hardware allows for longitudinal monitoring of patients who have undergone spinal alignment surgery or other musculoskeletal procedures. In addition, because deep learning models are subject to broad variation in performance based on subtle changes in imaging characteristics, accounting for differences in performance across clinical subgroups increases generalizability and potential for robust implementation. This represents the third application of the SpineTK network in evaluating spine-relevant metrics. Furthermore, this study specifically highlights how mask–region-based convolutional neural networks (such as SpineTK) can be applied to various landmark detection tasks and be retrained for clinical use. In our study, we retrained SpineTK on a different imaging modality (EOS imaging and radiography vs MRI, CT, and radiography) and plane of imaging (coronal vs sagittal) and showed that it can still produce accurate landmark locations relevant to the Cobb angle that match or surpass values in the existing literature and provide advantages in terms of invariance across clinical characteristics. Last, we demonstrate that the network can learn to generalize, as suggested by its high performance on data that were not represented in the training set.

Our study had limitations. In a manual analysis of EOS images with 1 SD and greater Cobb angle measurement error in hardware versus nonhardware categories, artifacts from hardware can occlude the spine on images such that the algorithm is unable to detect enough vertebral bodies to form an appropriate curve. However, it is notable that the angle measurement errors did not exceed 5° on EOS images in patients either with or without hardware. When looking at radiographs with 1 SD and greater Cobb angle measurement error, we found that these images also had artifacts from hardware that occluded a majority of the spine (but once again, did not exceed 5° error). These findings indicate that a separate “flag” for radiologist review should be used in practice when only a few vertebral bodies are detected by the network because 5° of error can potentially push patients into a different scoliosis grading category. We also noted that endplates did not match with those chosen by annotators in 93 of 1242 endplates (7.5%) in the test set. While the exact endplate choice may not matter for Cobb angle reporting for screening, it can be a limiting factor in surgical planning, which involves selecting appropriate vertebrae as end points of the curve. Additionally, we did not have information about the EOS or external radiograph scanning parameters, which can limit replicability in future studies. Per the EOS website (https://www.eos-imaging.com), scanning parameters are standardized across devices to minimize radiation exposure, which would indicate that, unless an institution has altered these parameters, the results may still be applicable. Last, while great care was made to ensure that our patient sample represented diverse clinical characteristics, we did not have a proportionally large number of EOS images available to us in younger patients (age ≤ 20 years) for use in this study (80 EOS images in patients age ≤ 20 years population). This could lead our algorithm to be biased toward individuals with lower bone mineral density and could have caused the network to learn on density-dependent features that are more prevalent in older individuals. The effect of bone density could have also led our system to learn on features such as fractured or deformed vertebral bodies. However, we used radiographs from a public dataset as an external test set to increase the representation of younger patients. The results indicated that the network was able to measure Cobb angles accurately on these external data even though the network did not have many training images in this age range. Additionally, complete racial demographics for our patient sample were not available for this study, limiting our ability to demonstrate robust performance across racial groups.

Overall, we have demonstrated that the present neural network architecture can produce highly accurate Cobb angle measurements in a rapid manner. Furthermore, outputs from this network have been shown to produce consistent measurements regardless of different clinical characteristics, including the presence of hardware, which, to our knowledge, has not been evaluated in prior studies. The network architecture used in this study has been demonstrated to be highly adaptable and can be applied to a variety of object detection– and key point detection–based tasks in musculoskeletal radiology. With regard to the specific task of Cobb angle measurement automation, this network offers the opportunity to quickly analyze images accurately for Cobb angle measurements, providing the opportunity for trending of Cobb angles over multiple scans without additional work. Future studies should further validate the network's performance for clinical implementation by including additional adolescent individuals, evaluating performance across individuals of different races and bone density statuses, and determining the network's use in a live clinical setting.

1

Current addresses: Department of Radiology, Pennsylvania State College of Medicine, Hershey, Pa.

2

Current addresses: Department of Radiology, The Johns Hopkins University School of Medicine, Baltimore, Md.

Supported by National Institutes of Health National Institute of Arthritis and Musculoskeletal and Skin Diseases (R01AR068382).

Data sharing: Data generated or analyzed during the study are available from the corresponding author by request.

Disclosures of conflicts of interest: A.S. No relevant relationships. S.T. No relevant relationships. D.K. No relevant relationships. E.T. No relevant relationships. B.J.K. No relevant relationships. G.C. No relevant relationships. A.A. No relevant relationships. N.A. No relevant relationships. W.X. No relevant relationships. J.B.P. No relevant relationships. A.T. No relevant relationships. A.K. No relevant relationships. K.S. No relevant relationships. C.S.R. No relevant relationships.

Abbreviation:

BMI
body mass index

References

  • 1. Kebaish KM , Neubauer PR , Voros GD , Khoshnevisan MA , Skolasky RL . Scoliosis in adults aged forty years and older: prevalence and relationship to age, race, and gender . Spine 2011. ; 36 ( 9 ): 731 – 736 . [DOI] [PubMed] [Google Scholar]
  • 2. Labelle H , Richards SB , De Kleuver M , et al . Screening for adolescent idiopathic scoliosis: an information statement by the Scoliosis Research Society international task force . Scoliosis 2013. ; 8 ( 1 ): 17 . [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 3. Weiss HR . Rehabilitation of adolescent patients with scoliosis—what do we know? A review of the literature . Pediatr Rehabil 2003. ; 6 ( 3-4 ): 183 – 194 . [DOI] [PubMed] [Google Scholar]
  • 4. Warren MP , Brooks-Gunn J , Hamilton LH , Warren LF , Hamilton WG . Scoliosis and fractures in young ballet dancers. Relation to delayed menarche and secondary amenorrhea . N Engl J Med 1986. ; 314 ( 21 ): 1348 – 1353 . [DOI] [PubMed] [Google Scholar]
  • 5. Li XF , Li H , Liu ZD , Dai LY . Low bone mineral status in adolescent idiopathic scoliosis . Eur Spine J 2008. ; 17 ( 11 ): 1431 – 1440 . [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 6. Asher MA , Burton DC . Adolescent idiopathic scoliosis: natural history and long term treatment effects . Scoliosis 2006. ; 1 ( 1 ): 2 . [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 7. Diebo BG , Shah NV , Boachie-Adjei O , et al . Adult spinal deformity . Lancet 2019. ; 394 ( 10193 ): 160 – 172 . [DOI] [PubMed] [Google Scholar]
  • 8. Janicki JA , Alman B . Scoliosis: review of diagnosis and treatment . Paediatr Child Health 2007. ; 12 ( 9 ): 771 – 776 . [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 9. Kim H , Kim HS , Moon ES , et al . Scoliosis imaging: what radiologists should know . RadioGraphics 2010. ; 30 ( 7 ): 1823 – 1842 . [DOI] [PubMed] [Google Scholar]
  • 10. Fujishiro T , Boissière L , Cawley DT , et al . Adult spinal deformity surgical decision-making score. Part 2: development and validation of a scoring system to guide the selection of treatment modalities for patients above 40 years with adult spinal deformity . Eur Spine J 2020. ; 29 ( 1 ): 45 – 53 . [DOI] [PubMed] [Google Scholar]
  • 11. Mac-Thiong JM , Remondino R , Joncas J , Parent S , Labelle H . Long-term follow-up after surgical treatment of adolescent idiopathic scoliosis using high-density pedicle screw constructs: is 5-year routine visit required? Eur Spine J 2019. ; 28 ( 6 ): 1296 – 1300 . [DOI] [PubMed] [Google Scholar]
  • 12. Loder RT , Urquhart A , Steen H , et al . Variability in Cobb angle measurements in children with congenital scoliosis . J Bone Joint Surg Br 1995. ; 77 ( 5 ): 768 – 770 . [PubMed] [Google Scholar]
  • 13. Wu W , Liang J , Du Y , et al . Reliability and reproducibility analysis of the Cobb angle and assessing sagittal plane by computer-assisted and manual measurement tools . BMC Musculoskelet Disord 2014. ; 15 ( 1 ): 33 . [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 14. Horng MH , Kuok CP , Fu MJ , Lin CJ , Sun YN . Cobb angle measurement of spine from x-ray images using convolutional neural network . Comput Math Methods Med 2019. ; 2019 : 6357171 . [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 15. Caesarendra W , Rahmaniar W , Mathew J , Thien A . Automated Cobb angle measurement for adolescent idiopathic scoliosis using convolutional neural network . Diagnostics 2022. ; 12 ( 2 ): 396 . [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 16. Wu C , Meng G , Lian J , et al . A multi-stage ensemble network system to diagnose adolescent idiopathic scoliosis . Eur Radiol 2022. ; 32 ( 9 ): 5880 – 5889 . [DOI] [PubMed] [Google Scholar]
  • 17. Tu Y , Wang N , Tong F , Chen H . Automatic measurement algorithm of scoliosis Cobb angle based on deep learning . J Phys Conf Ser 2019. ; 1187 ( 4 ): 042100 . [Google Scholar]
  • 18. Pan Y , Chen Q , Chen T , et al . Evaluation of a computer-aided method for measuring the Cobb angle on chest X-rays . Eur Spine J 2019. ; 28 ( 12 ): 3035 – 3043 . [DOI] [PubMed] [Google Scholar]
  • 19. Yao Y , Yu W , Gao Y , et al . W-Transformer: accurate Cobb angles estimation by using a transformer-based hybrid structure . Med Phys 2022. ; 49 ( 5 ): 3246 – 3262 . [DOI] [PubMed] [Google Scholar]
  • 20. Liu J , Yuan C , Sun X , Sun L , Dong H , Peng Y . The measurement of Cobb angle based on spine X-ray images using multi-scale convolutional neural network . Phys Eng Sci Med 2021. ; 44 ( 3 ): 809 – 821 . [DOI] [PubMed] [Google Scholar]
  • 21. Ha AY , Do BH , Bartret AL , et al . Automating scoliosis measurements in radiographic studies with machine learning: comparing artificial intelligence and clinical reports . J Digit Imaging 2022. ; 35 ( 3 ): 524 – 533 . [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 22. Alharbi RH , Alshaye MB , Alkanhal MM , Alharbi NM , Alzahrani MA , Alrehaili OA . Deep learning based algorithm for automatic scoliosis angle measurement . In: 2020 3rd International Conference on Computer Applications & Information Security (ICCAIS) , Riyadh, Saudi Arabia , March 19–21, 2020 . IEEE; , 2020. ; 1 – 5 . [Google Scholar]
  • 23. Fu X , Yang G , Zhang K , Xu N , Wu J . An automated estimator for Cobb angle measurement using multi-task networks . Neural Comput Appl 2021. ; 33 ( 10 ): 4755 – 4761 . [Google Scholar]
  • 24. Sardjono TA , Wilkinson MH , Veldhuizen AG , van Ooijen PM , Purnama KE , Verkerke GJ . Automatic Cobb angle determination from radiographic images . Spine 2013. ; 38 ( 20 ): E1256 – E1262 . [DOI] [PubMed] [Google Scholar]
  • 25. Suri A , Jones BC , Ng G , et al . Vertebral deformity measurements at MRI, CT, and radiography using deep learning . Radiol Artif Intell 2021. ; 4 ( 1 ): e210015 . [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 26. Suri A , Jones BC , Ng G , et al . A deep learning system for automated, multi-modality 2D segmentation of vertebral bodies and intervertebral discs . Bone 2021. ; 149 : 115972 . [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 27. Fraiwan M , Audat Z , Manasreh T . A dataset of scoliosis, spondylolisthesis, and normal vertebrae X-ray images . Published January 17, 2022. Accessed January 20, 2023. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 28. Koo TK , Li MY . A guideline of selecting and reporting intraclass correlation coefficients for reliability research . J Chiropr Med 2016. ; 15 ( 2 ): 155 – 163 . [Published correction appears in J Chiropr Med 2017;16(4):346.] [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 29. Seabold S , Perktold J . Statsmodels: econometric and statistical modeling with Python . In: Proceedings of the 9th Python in Science Conference , 2010. ; 92 – 96 . [Google Scholar]
  • 30. Chung N , Cheng YH , Po HL , et al . Spinal phantom comparability study of Cobb angle measurement of scoliosis using digital radiographic imaging . J Orthop Translat 2018. ; 15 : 81 – 90 . [DOI] [PMC free article] [PubMed] [Google Scholar]

Articles from Radiology: Artificial Intelligence are provided here courtesy of Radiological Society of North America

RESOURCES