Frontal Segmentation
POST /frontal-segmentation
Segments dental structures in frontal intra-oral images and evaluates occlusal conditions using orthodontic evaluation standards.

Image Type: Frontal Intra-oral Photographs
Tags: Segmentation Frontal View ICON
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
PatientID | string | ✅ | Unique patient identifier |
TimeStamp | string | ✅ | Analysis session timestamp |
ImageName | string | ✅ | Full URL to the image |
StandardName | string | ❌ | Evaluation standard (default: "ICON") |
PlotLabels | boolean | ❌ | Plot 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/..."
}