服飾識別API使用方式

當需要暸解顧客身上服飾識別及特徵時,可透過 [“clothing_detection”] 辨識顧客身上衣著特徵。

將圖片傳送至服飾識別服務

透過 [clothing_detection將欲判斷的圖片匯入,該API即會回傳照片中判別到的服飾種類以及位置。

HTTP方法與請求網址:

POST https://saas.intemotech.com/saasapi/detect

Content-type

application/form-data

請求from-data正文:

KEYVALUE
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服飾判斷成功、失敗
返回頂端