火焰偵測服務

適用情境應用:大型場域災害監控、工廠火災偵測。

應用場域

大型火災災害監控偵測,辨識到火焰即時通報。

大型場域災害監控

大型場域預防火災不易,如:垃圾掩埋場、森林公園、大型廠房等,將監視影像串連至該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正文:

KEYVALUE
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火焰位置與框線
statesAPI呼要成功、失敗
回傳欄位說明