煙霧偵測服務
適用情境應用:大型場域災害監控、各類煙霧偵測。
文檔索引
應用場域
煙霧辨識功能簡介
煙霧辨識服務可透過API [“smoke_detection”] 辨識影中是否有煙霧,若有辨識到煙霧特徵,API則會回傳煙霧的位置與框線資訊。
傳送影像至煙霧辨識服務
透過 [“smoke_detection“] 將欲辨識影像匯入,若AI辨識到影像中有煙霧特徵,即會回傳煙霧標籤、座標及框線資訊。
HTTP方法與請求網址:
POST https://saas.intemotech.com/saasapi/detect
Content-type
application/form-data
請求from-data正文:
KEY | VALUE |
---|---|
file | 匯入照片檔案 (image) |
api_name | [“smoke_detection”] (string) |
cURL:
curl --location --request POST 'https://saas.intemotech.com/saasapi/detect' \
--header 'Authorization: Bearer <TOKEN>' \
--form 'api_name="[\"smoke_detection\"]"' \
--form 'file=@"/xxxx.png"'
辨識結果文本:
{
"data": [
{
"smoke_detection": [
{
"conf": 0.77783203125,
"name": "fire",
"xywh": [
0.5,
0.5087719559669495,
1.0,
0.9824561476707458
]
}
]
}
],
"states": "Sucessfully"
}
欄位名稱 | 欄位說明 |
---|---|
smoke_detection | 煙霧偵測 |
conf | 信心值:0~1分(信心值越高代表越準確) |
name | 標籤名稱(smoke-煙霧) |
xywh | 煙霧位置與框線 |
states | API呼叫成功、失敗 |