Panoramic Segmentation
POST /pano-segmentation
Segments dental structures in panoramic X-ray images with contour and mask output for detailed structural analysis.

Image Type: Panoramic Radiograph
Tags: Segmentation Panoramic X-ray AI
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
PatientID | string | ✅ | Unique patient identifier |
TimeStamp | string | ✅ | Analysis session timestamp |
ImageName | string | ✅ | Full URL to the image |
DrawContours | boolean | ❌ | Draw contour outlines on output |
Example Request
curl -X POST \
https://api.annie-insights.com/api/v2/pano-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/panoramic.jpg",
"DrawContours": true
}'
Sample Response
{
"Version": "2024.1.0",
"PatientID": "P-001",
"Results": {
"i1_lft_lo": {"missing": false, "points": [[494,241],[494,301],"..."]},
"m1_rgt_lo": {"missing": true, "points": [0,0]}
},
"OutputImageUrl": "https://annieapistorage.blob.core.windows.net/..."
}