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