Temuan Klinis
POSTING /clinical-images
Mendeteksi temuan klinis dalam foto gigi — pembusukan, indikator ortodontik, restorasi, kondisi periodontal, dan braket menggunakan deteksi objek pembelajaran mendalam YOLO.

Jenis Gambar: Foto Intra-oral (Kanan, Depan, Kiri, Atas, Bawah)
Tag: Detection Intra-oral Photos AI
Parameter Permintaan​
| Parameter | Jenis | Diperlukan | Keterangan |
|---|---|---|---|
PatientID | rangkaian | None | Pengidentifikasi pasien yang unik |
TimeStamp | rangkaian | None | Stempel waktu sesi analisis |
ImageName | rangkaian | None | URL lengkap ke gambar |
Contoh Permintaan​
curl -X POST \
https://api.annie-insights.com/api/v2/clinical-images \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"PatientID": "P-001",
"TimeStamp": "2026-05-24",
"ImageName": "https://example.com/image.jpg"
}'
Contoh Respon​
{
"Version": "2024.1.0",
"PatientID": "P-001",
"TimeStamp": "2026-05-24",
"ImageName": "a1b2c3d4_clinical.jpg",
"ImageContents": {
"decay": 2,
"restoration": 1
},
"Results": {
"decay": [
{"ClassName": "decay", "TopLeft": [120, 80], "BottomRight": [200, 160]},
{"ClassName": "decay", "TopLeft": [450, 200], "BottomRight": [510, 260]}
],
"restoration": [
{"ClassName": "restoration", "TopLeft": [300, 90], "BottomRight": [380, 170]}
]
},
"OutputImageUrl": "https://annieapistorage.blob.core.windows.net/api-output-images/clinical-images/...?se=...&sp=r&sv=...&sr=b&sig=..."
}
tip
OutputImageUrl adalah URL SAS Azure Blob berbatas waktu yang valid selama 72 jam. Lihat Output Images untuk detailnya.