Skip to main content

Frontal Segmentation

POST /frontal-segmentation

Segments dental structures in frontal intra-oral images and evaluates occlusal conditions using orthodontic evaluation standards.

Frontal Segmentation

Image Type: Frontal Intra-oral Photographs

Tags: Segmentation Frontal View ICON

Request Parameters

ParameterTypeRequiredDescription
PatientIDstringUnique patient identifier
TimeStampstringAnalysis session timestamp
ImageNamestringFull URL to the image
StandardNamestringEvaluation standard (default: "ICON")
PlotLabelsbooleanPlot classification labels on output

Example Request

curl -X POST \
https://api.annie-insights.com/api/v2/frontal-segmentation \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"PatientID": "P-001",
"TimeStamp": "2026-05-24",
"ImageName": "https://example.com/frontal.jpg",
"StandardName": "ICON",
"PlotLabels": true
}'

Sample Response

{
"Version": "2024.1.0",
"PatientID": "P-001",
"TimeStamp": "2026-05-24",
"ImageName": "a1b2c3d4_frontal.jpg",
"Results": {
"i1_rgt_up": {"missing": false, "points": [[441,195],[441,201],"..."]},
"m2_rgt_up": {"missing": false, "points": [[916,227],[919,225],"..."]},
"m3_rgt_up": {"missing": true, "points": [0,0]}
},
"OutputImageUrl": "https://annieapistorage.blob.core.windows.net/..."
}