Skip to content

Code from the Insights into Predicting Tooth Extraction from Panoramic Dental Images: Artificial Intelligence vs. Dentists paper

License

Notifications You must be signed in to change notification settings

OMFSdigital/PAN-AI-X

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PAN-AI-X

This repository contains the Python implementation of the Insights into Predicting Tooth Extraction from Panoramic Dental Images: Artificial Intelligence vs. Dentists Paper.

Models

The different models depicted in the image above that were obtained from training with different image % margins can be found under models. The 2% margin model performed best during testing and should be used to perform inference.

Installation

First, you will need to install CUDA on your machine. This code has been developed with Python 3.11 and CUDA 11.8.

  1. python -m venv panaix
  2. Activate the virtual environment:
    • On Windows: panaix/Scripts/activate
    • On Linux: source panaix/bin/activate
  3. Install an appropriate version of torch, torchvision, and CUDA.
  4. pip install -r requirements.txt

Usage

# Example usage:
weights_path = '/.../model.pth'
image_path = '/.../image.png'
train_dataset_path = '/.../train_dir'
val_dataset_path = '/.../val_dir'
test_dataset_path = '/.../test_dir'

# Create an instance of the PAN_AI_X toothpredictor
tooth_predictor = PAN_AI_X(weights_path)

# Use predict method for inference
prediction = tooth_predictor.predict(image_path)
print(prediction)

# Use train method for training
tooth_predictor.train(train_dataset_path, val_dataset_path, test_dataset_path)

Training Dataset Setup

Dataset directory structure

Datasets must follow the regular pytorch training guidelines for simple classification tasks. Images for each class therefore have to be stored in a seperate directory. The structure of the training datasets should look similar to this:

datasets/
├── train
│   ├── 00WP
│   │   ├── preserve0001.png
│   │   ├── ...
│   └── 01EX
│       ├── extract0001.png
│       ├── ...
├── val
│   ├── 00WP
│   │   ├── preserve0900.png
│   │   ├── ...
│   └── 01EX
│       ├── extract0100.png
│       ├── ...
└── test
    ├── 00WP
    │   ├── preserve1000.png
    │   ├── ...
    └── 01EX
        ├── extract0110.png
        ├── ...

An example image for an extracted tooth would be this tooth that is also shown in the figures of our publication.

Example Tooth Margin 2%

How to cite

@article{pan-ai-x2024,
    title={Insights into Predicting Tooth Extraction from Panoramic Dental Images: Artificial Intelligence vs. Dentists},
    journal = {Clinical Oral Investigations},
    pages = {381},
    volume = {28},
    number = {7},
    issn = {1436-3771},
    author={Ila Motmaen and Kunpeng Xie and Leon Schönbrunn and Jeff Berens and Kim Grunert and Anna Maria Plum and Johannes Raufeisen and Andre Ferreira and Alexander Hermans and Jan Egger and Frank Hölzle and Daniel Truhn and Behrus Puladi},
    year={2024},
    doi = {https://doi.org/10.1007/s00784-024-05781-5},
    url = {https://link.springer.com/article/10.1007/s00784-024-05781-5}
}

About

Code from the Insights into Predicting Tooth Extraction from Panoramic Dental Images: Artificial Intelligence vs. Dentists paper

Resources

License

Stars

Watchers

Forks

Languages