服飾識別服務
適用情境應用:服飾店顧客分析、精準廣告投放。
文檔索引
應用場域
服飾識別API使用方式
當需要暸解顧客身上服飾識別及特徵時,可透過 [“clothing_detection”] 辨識顧客身上衣著特徵。
將圖片傳送至服飾識別服務
透過 [“clothing_detection”] 將欲判斷的圖片匯入,該API即會回傳照片中判別到的服飾種類以及位置。
HTTP方法與請求網址:
POST https://saas.intemotech.com/saasapi/detect
Content-type
application/form-data
請求from-data正文:
KEY | VALUE |
---|---|
file | 匯入照片檔案 (image) |
api_name | [“clothing_detection”] (string) |
cURL:
curl --location --request POST curl --location --request POST 'https://saas.intemotech.com/saasapi/detect' \
--header 'Authorization: Bearer <TOKEN>' \
--form 'file=@"/xxx.png"' \
--form 'api_name="[\"clothing_detection\"]"'
辨識結果文本:
{
"data": [
{
"clothing_detection": [
{
"point": {
"bottom": 553,
"left": 63,
"right": 268,
"top": 236
},
"short sleeve dress": 0.9408602118492126
}
]
}
],
"states": "Sucessfully"
}
欄位名稱 | 欄位說明 |
---|---|
clothing_detection | 服飾識別 |
point | 位置列表 |
bottom | 服飾底部位置 |
left | 服飾左方位置 |
right | 服飾右方位置 |
top | 服飾上方位置 |
short sleeve dress | 短袖洋裝:信心值0.9 (信心值越高代表越準確) |
states | 服飾判斷成功、失敗 |
衣服辨識列表
服飾標籤 | 服飾款式 |
---|---|
short sleeve top | 短袖上衣 |
long sleeve top | 長袖上衣 |
short sleeve outwear | 短袖外套 |
long sleeve outwear | 長袖外套 |
vest | 背心 |
sling | 吊帶背心 |
shorts | 短褲 |
trousers | 長褲 |
skirt | 裙子 |
short sleeve dress | 短袖洋裝 |
long sleeve dress | 長袖洋裝 |
vest dress | 背心洋裝 |
sling dress | 吊帶洋裝 (晚禮服) |