火焰偵測服務
適用情境應用:大型場域災害監控、工廠火災偵測。
文檔索引
應用場域
大型場域災害監控
大型場域預防火災不易,如:垃圾掩埋場、森林公園、大型廠房等,將監視影像串連至該API,當辨識到火焰時,即可即時通報,將傷害降到最低。
工廠火災偵測
運用該API 24小時監控廠房內是否有火焰,當辨識到火焰時,iSeek即回傳fire標籤,可運用,保障您的資產安全。
火焰辨識功能簡介
火焰辨識服務可透過API [“fireandsmoke_detection”] 偵測影中是否有火焰,若有辨識到火焰,API則會回傳火焰的位置與框線資訊。
傳送影像至火焰偵測辨識服務
透過 [“fire_detection“] 將欲辨識影像匯入,若AI辨識到影像中有火焰特徵,即會回傳火焰標籤、座標及框線資訊。
HTTP方法與請求網址:
POST https://saas.intemotech.com/saasapi/detect
Content-type
application/form-data
請求from-data正文:
KEY | VALUE |
---|---|
file | 匯入照片檔案 (image) |
api_name | [“fire_detection”] (string) |
cURL:
curl --location --request POST 'https://saas.intemotech.com/saasapi/detect' \
--header 'Authorization: Bearer <TOKEN>' \
--form 'api_name="[\"fire_detection\"]"' \
--form 'file=@"/xxxx.png"'
辨識結果文本:
{
"data": [
{
"fire_detection": [
{
"conf": 0.77783203125,
"name": "fire",
"xywh": [
0.5,
0.5087719559669495,
1.0,
0.9824561476707458
]
}
]
}
],
"states": "Sucessfully"
}
欄位名稱 | 欄位說明 |
---|---|
fire_detection | 火焰偵測 |
conf | 信心值:0~1分(信心值越高代表越準確) |
name | 標籤名稱(fire-火焰) |
xywh | 火焰位置與框線 |
states | API呼要成功、失敗 |