CoolFace
Datasetpublic

hetusuki/dental-panoramic-xray-yolo

Dental Panoramic X-Ray Detection Dataset (YOLO Format) Combined dataset for dental pathology detection on panoramic radiographs, in YOLO format. Built for training liodon-ai/dental-panoramic-detector. Classes ID Name Description 0 caries Dental caries and deep caries 1 periapical_lesion Periapical / apical periodontitis 2 impacted_tooth Impacted and wisdom teeth Dataset Sources Source Images Boxes License DENTEX 724 3… See the full description on the dataset page: https://huggingface.co/datasets/hetusuki/dental-panoramic-xray-yolo.

sourceHugging Facecc-by-nc-4.0updated 10d agoView on Hugging Face
0likes37downloads
Dataset Card

Dental Panoramic X-Ray Detection Dataset (YOLO Format)

Combined dataset for dental pathology detection on panoramic radiographs, in YOLO format. Built for training liodon-ai/dental-panoramic-detector.

Classes

IDNameDescription
0cariesDental caries and deep caries
1periapical_lesionPeriapical / apical periodontitis
2impacted_toothImpacted and wisdom teeth

Dataset Sources

SourceImagesBoxesLicense
DENTEX7243,711CC BY 4.0
OralXrays-9 (CVPR 2025)9,25036,186Research use

DENTEX provides: caries, periapical lesion, impacted tooth annotations on panoramic X-rays from 3 institutions.

OralXrays-9 provides: decay (→ caries), apical periodontitis (→ periapicallesion), wisdom tooth (→ impactedtooth) annotations across a hospital-scale panoramic X-ray collection.

Splits

SplitImagesBoxes
train9,92839,715
val46182

Validation uses DENTEX val set only for consistent benchmarking.

Class Distribution (train)

ClassBoxesShare
caries12,38631.2%
periapical_lesion4,67211.8%
impacted_tooth22,65757.0%

Format

Standard YOLO format:

dental-panoramic-xray-yolo/
├── images/
│   ├── train/   # 9,928 images (.png / .jpg)
│   └── val/     # 46 images (.png)
├── labels/
│   ├── train/   # YOLO .txt per image
│   └── val/
└── dental.yaml

Each label file: one line per box — class cx cy w h (normalised 0–1).

Usage

python
from huggingface_hub import snapshot_download
path = snapshot_download(repo_id="liodon-ai/dental-panoramic-xray-yolo", repo_type="dataset")

Then point your YOLO config data: to {path}/dental.yaml.

Citation

If you use this dataset, please cite:

@dataset{liodonai2026dental,
  title={Dental Panoramic X-Ray Detection Dataset (YOLO Format)},
  author={Liodon AI},
  year={2026},
  publisher={Hugging Face},
  url={https://huggingface.co/datasets/liodon-ai/dental-panoramic-xray-yolo}
}

This dataset combines and remaps annotations from the following sources — please also cite them:

@inproceedings{hamamci2023dentex,
  title={DENTEX: An Abnormal Tooth Detection with Dental Enumeration and Diagnosis Benchmark for Panoramic X-Rays},
  author={Hamamci, Ibrahim Ethem and others},
  booktitle={MICCAI},
  year={2023}
}

@inproceedings{chen2025oralxrays9,
  title={OralXrays-9: Towards Hospital-Scale Panoramic X-ray Anomaly Detection via Personalized Multi-Object Query-Aware Mining},
  author={Chen, Bingzhi and others},
  booktitle={CVPR},
  year={2025}
}