Morphological Decoupling-Based Skeletal Classification for Clinical Assessment of Malocclusion

TL;DR

TeethGNN fuses CBCT, ANB/MP-FH morphology, and graph calibration, reaching 77.08% accuracy and 89.61% AUC.

eess.IV 🔴 Advanced 2026-09-09 35 views
Zhichun Jin Zhicheng He Hao Xu Dongyang Li Lin Wang Hongliang Ren Long Bai
Orthodontic diagnosis CBCT Graph neural networks Multimodal learning Calibration

Key Findings

Methodology

TeethGNN takes a CBCT-derived lateral cephalogram as input. ResNet50 extracts visual features, while two separate ResNet50-plus-linear decoders predict ANB and MP-FH angles, removing manual measurement. The image feature and two predicted morphology values become nodes in a fully connected self-looped graph. GNN message passing fuses them, while Multi-scale Graph Adversarial Perturbation and Nonlinear Topological Graph Calibration improve robustness and confidence reliability.

Key Results

  • On the authors’ collected clinical dataset, the system achieved 77.08% accuracy and 89.61% AUC, outperforming compared state-of-the-art methods. The result supports explicit fusion of interpretable orthodontic measurements with learned image representations.
  • The model predicts ANB and MP-FH directly from imaging rather than requiring clinicians to enter measurements. Imaging used a NewTom VGi system with a 15×15 cm FOV, 110 kV, 5–10 mA, and a 0.3 mm focal spot.
  • Ablation experiments reportedly support the contributions of multimodal graph modeling, adversarial perturbation, and nonlinear topological calibration. The calibration modules target the mismatch between GNN confidence and actual correctness.

Significance

The study translates a familiar orthodontic workflow—measure morphology first, then classify skeletal pattern—into an end-to-end assistive system. It may reduce manual measurement time and operator variability for Class I, II, and III grading. More importantly, it combines clinically recognizable variables with deep visual features rather than relying solely on a black-box classifier. This design could make automated orthodontic analysis more inspectable and better suited to confidence-aware clinical triage, although clinical benefit has not yet been demonstrated prospectively.

Technical Contribution

The main engineering contributions are a decoupled morphology decoder, a three-node multimodal graph, and collaborative calibration. Unlike concatenation, summation, or generic attention fusion, ANB, MP-FH, and the image feature remain explicit node types with node-specific transformations and message passing. Multi-scale adversarial perturbation operates in embedding space without changing graph topology, improving resilience to representation noise. Learned temperature scaling and edge-wise total-variation regularization then encourage topology-consistent confidence while preserving logit ranking.

Novelty

The central novelty is treating predicted orthodontic angles as graph nodes rather than merely appending them to an image vector, and combining explicit adversarial calibration with implicit topological calibration in one diagnostic framework. Relative to most CNN-based cephalometric classifiers, TeethGNN makes the clinical measurement pathway part of representation learning. Relative to generic GNN fusion, it targets a particularly asymmetric setting: two scalar clinical indicators interacting with one high-dimensional visual node.

Limitations

  • The provided paper reports results on a collected clinical dataset but does not specify sample size, class distribution, or external-hospital validation. Consequently, robustness across scanners, institutions, ethnic groups, and acquisition protocols remains uncertain.
  • The system assumes usable lateral-cephalogram reconstruction, standardized positioning, and reliable ANB/MP-FH supervision. Motion, poor image quality, atypical anatomy, landmark ambiguity, or annotation disagreement could cause both regression and classification errors.
  • The study establishes predictive performance, not improved treatment outcomes or prospective workflow benefit.

Future Work

Future studies should perform multicenter external validation and report class-wise sensitivity, specificity, expected calibration error, confidence intervals, and decision-curve utility. Useful extensions include full 3D CBCT reasoning, additional cephalometric variables, longitudinal treatment data, uncertainty estimation, interpretable visual explanations, and prospective comparison with orthodontists. Calibration should also be tested under domain shift and selective prediction settings, where the model can defer uncertain cases to clinicians.

AI Executive Summary

Skeletal malocclusion grading places patients into Class I, II, or III according to the relative position of the maxilla and mandible. It is central to orthodontic diagnosis and treatment planning, yet the conventional workflow remains manual: clinicians inspect a CBCT-derived lateral cephalogram, measure angles such as ANB and MP-FH, and integrate those measurements into a judgment. The process is slow and vulnerable to inter-operator variation. Pure CNN or Transformer classifiers are efficient, but their predictions may not map cleanly onto the measurements clinicians actually use.

The proposed TeethGNN follows the clinical sequence more closely. A ResNet50 extracts global image features, while two separate encoder-decoder branches estimate ANB and MP-FH directly from the same image. These three representations become nodes in a compact, fully connected graph. A graph neural network passes messages among the nodes, allowing low-dimensional morphology to interact explicitly with high-dimensional visual evidence. During training, Multi-scale Graph Adversarial Perturbation injects gradient-based embedding noise without changing topology. During prediction, Nonlinear Topological Graph Calibration adjusts node confidence through learned temperature parameters and edge consistency.

On the authors’ collected clinical dataset, TeethGNN achieved 77.08% accuracy and 89.61% AUC, exceeding the compared methods. The findings suggest that graph-based multimodal fusion can preserve clinically meaningful morphology while exploiting image context. However, the evidence remains preliminary: sample size, class distribution, external validation, and detailed calibration metrics are not provided in the supplied text. TeethGNN is therefore best viewed as a promising decision-support system, not an autonomous replacement for orthodontic expertise.

Deep Analysis

Background

Skeletal malocclusion is commonly divided into Class I, II, and III according to maxillomandibular relationships. Traditional assessment uses CBCT and reconstructed lateral cephalograms. Prior AI work includes CNN landmark detectors with rates above 98%, cascaded CNNs reporting 1.26 mm point-to-point error on PA cephalograms, and a bite-force device paired with random forest achieving 87.83% accuracy. Yet many systems remain image-only, two-dimensional, or difficult to interpret, and relatively few GNN studies address skeletal classification.

Core Problem

The goal is to classify skeletal malocclusion from a CBCT-derived lateral cephalogram while automatically recovering clinically meaningful ANB and MP-FH measurements. The task is difficult because scalar morphology can be overwhelmed by high-dimensional visual features under simple concatenation. GNNs also depend on graph quality, neighborhood information, and limited medical datasets; their confidence may be poorly calibrated. Acquisition pose, image quality, and landmark-label noise add further uncertainty.

Innovation

First, decoupled learnable decoders separately regress ANB and MP-FH, embedding the clinical measurement pathway into the network. Second, a three-node graph explicitly represents the image feature and the two morphology estimates, avoiding dilution of scalar indicators. Third, Multi-scale Graph Adversarial Perturbation creates gradient-based perturbations of different magnitudes in embedding space while preserving topology. Fourth, Nonlinear Topological Graph Calibration combines learned node temperatures with edge-wise confidence regularization to improve reliability without intentionally changing class ranking.

Methodology

  • �� Input: NewTom VGi full-cranium CBCT, 15×15 cm FOV, 110 kV, 5–10 mA, 0.3 mm focal spot, reconstructed as a lateral cephalogram.
  • �� Visual branch: compute F=ResNet50(I).
  • �� Morphology branches: two ResNet50 encoders plus linear decoders predict ANB and MP-FH, optimized with MSE.
  • �� Graph construction: V={vF,vANB,vMP-FH}; initialize nodes with F and the two predictions; use a fully connected topology with self-loops.
  • �� Fusion/classification: apply node-specific GNN message passing, concatenate final node embeddings, and use a linear classifier trained with cross-entropy.
  • �� Calibration: update node perturbations through projected gradient ascent, use scale factors {1,…,S}, then apply v′i=vi/ti and edge total-variation regularization.

Experiments

The evaluation uses the authors’ collected clinical dataset and compares TeethGNN with existing classification solutions, alongside ablation studies. Accuracy and AUC are the principal reported metrics. Data were acquired with the NewTom VGi orthodontic protocol. Training includes a warm-up stage for morphology regression followed by full training of graph fusion and calibration. The supplied text does not provide sample count, class balance, detailed baseline identities, or numerical hyperparameters, which limits reproducibility and interpretation of subgroup performance.

Results

TeethGNN obtained 77.08% accuracy and 89.61% AUC, outperforming the compared state-of-the-art approaches. The result indicates that predicted ANB and MP-FH can contribute useful information even when inferred automatically from images. Ablations support the overall design: explicit graph nodes preserve low-dimensional morphology better than naïve fusion; multi-scale perturbation improves robustness; and topological calibration promotes more consistent confidence among connected nodes. Without class-wise metrics or external testing, however, the clinical stability of these gains remains unresolved.

Applications

Potential uses include orthodontic triage, assisted cephalometric review, and pre-treatment case assessment. A deployment would require standardized CBCT acquisition, dependable angle annotations, privacy controls, and integration with clinical imaging systems. The output should be presented as a second opinion containing the predicted class, estimated ANB/MP-FH, and confidence. Low-confidence cases could be routed for priority human review, while clinicians retain responsibility for diagnosis and treatment planning.

Limitations & Outlook

The dataset’s size, composition, and balance are not stated, and no external-hospital evaluation is reported. The model focuses on two angles and may miss vertical facial pattern, soft-tissue structure, asymmetry, and other three-dimensional determinants. GNN inference, adversarial training, and calibration add implementation complexity. Future work should test domain shift, incorporate full 3D anatomy and more clinical variables, quantify uncertainty, and conduct prospective multicenter trials against routine orthodontic practice.

Plain Language Accessible to non-experts

Imagine a quality-control factory for orthodontic cases. In the old factory, a worker receives a head image, uses a ruler to measure several angles, and then decides which category the case belongs to. The process is slow, and two workers may use the ruler slightly differently. TeethGNN automates the first part: two specialized inspectors look at the same image and estimate ANB and MP-FH, like reading two important gauges.

A third inspector studies the whole image. Instead of making three independent decisions, all three inspectors sit in a small discussion circle. The whole-image inspector shares context, while the two gauge inspectors contribute precise measurements. Their messages are combined to decide Class I, II, or III, so the simple numbers are not lost inside a complicated picture.

The factory also practices with deliberately disturbed information. If a small amount of noise is added, the system must keep its answer stable. Finally, it checks whether connected inspectors express confidence at similar levels. On the reported clinical dataset, the system reached 77.08% accuracy and 89.61% AUC. It is a useful assistant, but not a final judge: testing across hospitals and real treatment decisions is still needed.

ELI14 Explained like you're 14

Picture a school game where you must classify a head image as Class I, II, or III. In the old version, a teacher measures angles with a ruler and then makes the call. That takes time, and two teachers might measure a little differently. TeethGNN is like a smart team that helps with the game.

One teammate looks at the whole picture. Two others estimate ANB and MP-FH, two important angles used by orthodontists. Then they form a chat group and exchange clues. The picture teammate knows the overall appearance, while the angle teammates provide focused measurements. The team combines everything before choosing a class.

During training, researchers intentionally add small disturbances, like lag in an online game or a blurry screenshot, to see whether the team still makes stable decisions. The system also checks whether connected teammates are wildly different in confidence. That helps avoid a prediction that sounds extremely certain but is often wrong.

The reported results were 77.08% accuracy and 89.61% AUC, better than the comparison methods. Pretty impressive! But it is still an assistant, not a magical dentist. The study needs more hospitals, more patients, and real-world tests before doctors can rely on it by itself.

Glossary

ANB angle

ANB is a cephalometric angle describing the anteroposterior relationship between the maxilla and mandible. It is derived from landmark geometry involving nasion, subspinale, and supramentale.

TeethGNN predicts ANB with a dedicated decoder and inserts the estimate as a graph node.

MP-FH angle

MP-FH is the angle between the mandibular plane and the Frankfort horizontal plane. It provides information about vertical skeletal morphology.

The model predicts MP-FH and fuses it with the image feature and ANB node.

ResNet50

ResNet50 is a 50-layer convolutional network using residual connections to learn hierarchical visual features. Residual pathways facilitate optimization of deep models.

It serves as the visual backbone and as the encoder in both morphology branches.

Graph Neural Network

A GNN learns representations on nodes and edges by repeatedly aggregating neighboring information. This allows the model to represent relationships rather than isolated feature vectors.

TeethGNN uses nodes for the image representation, ANB, and MP-FH.

Multi-scale Graph Adversarial Perturbation

This method adds gradient-directed perturbations of several magnitudes to node embeddings and trains the model to remain robust. It changes representations, not graph topology.

It provides explicit robustness and calibration during TeethGNN training.

AUC

The area under the receiver operating characteristic curve summarizes discrimination ability across decision thresholds. Higher values generally indicate better separation of classes.

TeethGNN reports an AUC of 89.61% on the clinical dataset.

Open Questions Unanswered questions from this research

  • 1 External generalization is unresolved: performance may change across scanners, acquisition protocols, populations, and annotators. Multicenter testing is needed to establish whether angle regression and class prediction remain stable.
  • 2 Calibration evidence is incomplete. The supplied paper text does not report expected calibration error, reliability diagrams, or class-wise confidence, so clinical threshold utility cannot yet be judged.

Applications

Immediate Applications

Assisted orthodontic review

Given a standardized CBCT-derived lateral cephalogram, the system can produce ANB, MP-FH, Class I/II/III, and confidence estimates. Clinicians could prioritize low-confidence cases and reduce repetitive measurement, while retaining final diagnostic authority.

Triage and referral

In an outpatient imaging workflow, TeethGNN could flag cases likely to have skeletal malocclusion and support referral or specialist scheduling. Deployment requires device adaptation, local validation, data protection, and monitoring for distribution shift.

Long-term Vision

Multicenter intelligent orthodontic platform

A future platform could combine full 3D CBCT, additional cephalometric variables, facial photographs, and longitudinal treatment records. Its main barriers are privacy, domain shift, annotation consistency, prospective evidence, and safe human-model coordination.

Abstract

Malocclusion skeletal grading is a fundamental task in orthodontics, critical for diagnosis and treatment planning. Traditionally, cone-beam computed tomography (CBCT) is used for visual measurement, and the reconstructed lateral cephalograms are handed over to expert dentists for diagnosis. However, manual review is time-consuming, labor-intensive, and subject to inter-operator variability. Therefore, an automatic CBCT-based system is needed for reliable malocclusion skeletal grading. In this case, we develop TeethGNN, a novel graph-based framework designed to combine CBCT image features with morphological information for accurate and efficient malocclusion grading. TeethGNN utilizes a decoupled learnable decoder to directly predict key morphological indicators from CBCT images, eliminating the need for manual measurements. These morphological features are then fused with image features using a graph neural network (GNN), which effectively models the relationships between the modalities. To further enhance robustness and calibration, we introduce a collaborative calibration strategy. This strategy combines multi-scale graph adversarial perturbation for explicit calibration and nonlinear topological graph calibration for implicit confidence adjustment. Extensive experiments and ablation studies on our collected clinical dataset demonstrate that our malocclusion measurement system achieves 77.08\% in accuracy and 89.61\% in AUC, outperforming the compared state-of-the-art methods. These results validate the effectiveness of graph-based multimodal fusion and collaborative calibration in improving malocclusion grading performance. Our system shows strong potential for advancing computer-aided orthodontic diagnosis, providing an accurate and reliable solution for vision-based clinical measurement and diagnosis.

eess.IV cs.CV