dentex Computer Vision Model
How to use the dentex Detection API
Try This Model
Drop an image here or click to upload
Code Snippets
from inference_sdk import InferenceHTTPClient
CLIENT = InferenceHTTPClient(
api_url="https://serverless.roboflow.com",
api_key="API_KEY"
)
result = CLIENT.infer("YOUR_IMAGE.jpg", model_id="dentex-3xe7e-qb2nn/5")Or, Use Free Caries, Deep Caries and Impacted Detection API
Powered by general detection model
pip install inference-sdk# 1. Import the library
from inference_sdk import InferenceHTTPClient
# 2. Connect to your workspace
client = InferenceHTTPClient(
api_url="https://serverless.roboflow.com",
api_key="API_KEY"
)
# 3. Run your workflow on an image
result = client.run_workflow(
workspace_name="<YOUR_WORKSPACE>",
workflow_id="<YOUR_WORKFLOW_ID>",
images={
"image": "YOUR_IMAGE.jpg" # Path to your image file
},
parameters={
"classes": "Caries, Deep Caries, Impacted, Periapical Lesion"
},
use_cache=True # cache workflow definition for 15 minutes
)
# 4. Get your results
print(result)Run on custom image
Drop an image here or click to upload
About dentex Model
Here are a few use cases for this project:
-
Dental Diagnosis Assistance: The "dentex" model could be utilized by dentists and health professionals to detect, evaluate, and monitor dental issues. By identifying issues such as caries, impacted teeth, deep caries, and periapical lesions, dentists could improve their diagnostic accuracy and treatment planning.
-
Educational Tool for Dental Students: This model could serve as a valuable learning resource for dental students, providing visual examples and automatic identification of various classes of teeth conditions during practical dental anatomy lessons.
-
Automated Dental Health Monitoring: Dental care companies could integrate "dentex" into their digital platforms to facilitate customer self-checks. People could take x-ray images of their teeth and get initial diagnostics, aiding in early detection of potential dental problems.
-
Dental Insurance Claims Assessment: Insurance companies could use the model in the claim assessment process to validate the dental procedures reported by policyholders or dentists. The model could assess x-ray images attached to the claims and help identify whether reported procedures correspond to the condition identified.
-
Development of Smart Dental Equipment: Manufacturers of dental imaging equipment could implement the "dentex" model to create smart devices capable of providing instant preliminary diagnostics along with x-ray imaging. This could potentially speed up the process for dentists and offer immediate insight into a patient's oral health.
Tell the agent what you want to build.
Cite This Project
LicenseCC BY 4.0If you use this dataset in a research paper, please cite it using the following BibTeX:
@misc{ dentex-3xe7e-qb2nn_dataset,
title = { dentex Dataset },
type = { Open Source Dataset },
author = { Dentalpracticesystem },
howpublished = { \url{ https://universe.roboflow.com/dentalpracticesystem/dentex-3xe7e-qb2nn } },
url = { https://universe.roboflow.com/dentalpracticesystem/dentex-3xe7e-qb2nn },
journal = { Roboflow Universe },
publisher = { Roboflow },
year = { 2025 },
month = { feb },
note = { visited on 2026-07-29 },
}










