安全帽辨識服務
適用情境應用:維安辨識、工地安全辨識。
文檔索引
應用場域
安全帽辨識功能簡介
安全帽辨識服務,可透過API [“helm_detection”] 辨識畫面中的人員是否配戴安全帽,若有則會回傳helmet標籤,若是沒配戴安全帽則回傳head的標籤,方便開發者介接更多應用。
開始使用安全帽辨識
透過安全帽辨識API上傳相關影像,並用 [“helm_detection”] 請求辨識畫面中的安全帽物件,該API將回覆頭部(head)及安全帽(helmet)在畫面中的位置。
HTTP方法與請求網址:
POST https://saas.intemotech.com/saasapi/detect
Content-type
application/form-data
請求from-data正文:
KEY | VALUE |
---|---|
file | 匯入照片檔案 (image) |
api_name | [“helm_detection”] (string) |
cURL:
curl --location --request POST 'https://saas.intemotech.com/saasapi/detect' \
--header 'Authorization: Bearer <TOKEN>' \
--form 'api_name="[\"helm_detection\"]"' \
--form 'file=@"/xxxx.png"'
辨識結果文本:
{
"data": [
{
"helm_detection": [
{
"conf": 0.91455078125,
"name": "helmet",
"xywh": [
0.4266054928302765,
0.2561728358268738,
0.22018349170684814,
0.395061731338501
]
},
{
"conf": 0.86083984375,
"name": "head",
"xywh": [
0.7626146674156189,
0.13117283582687378,
0.18577980995178223,
0.26234567165374756
]
}
]
}
],
"states": "Sucessfully"
}
欄位名稱 | 欄位說明 |
---|---|
helm_detection | 安全帽辨識 |
conf | 信心值:0~1分(信心值越高代表越準確) |
name | helmet=安全帽 head=頭部(表示沒戴安全帽) |
xywh | 辨識到的物件座標 |
states | API呼叫成功 |