Skip to main content

Panoramic Segmentation

POST /pano-segmentation

Segments dental structures in panoramic X-ray images with contour and mask output for detailed structural analysis.

Panoramic Segmentation

Image Type: Panoramic Radiograph

Tags: Segmentation Panoramic X-ray AI

Request Parameters

ParameterTypeRequiredDescription
PatientIDstringUnique patient identifier
TimeStampstringAnalysis session timestamp
ImageNamestringFull URL to the image
DrawContoursbooleanDraw 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/..."
}