Logo Detection

免费增值
通过 Karo Mkrtchyan | 已更新 a month ago | Visual Recognition
人气

4.9 / 10

延迟

2,121ms

服务等级

100%

Health Check

N/A

README

This Endpoint provide you get list (text, score, locale, boundingBox) and dimensions from image

Supported two request types

  1. GET - the important thing is that you should use image as a query name
  • Example (url?image=“image_url”)
  1. POST- the important thing is that you should use image as a form_data key
  • Example const data = new FormData(); data.append(‘image’, ‘image_path’);

For both cases we have same response type

Response Data Sturucture - in this example we used image

  • logo item - text, score, locale and boundingBox (tl is top left, tr is top right, bl is bottom left, br is bottom right)
  • success - cna be true or false, if it’s false we also have error message
  • dimensions - all info about image
{
    "logos": [
        {
            "text": "Apple Inc.",
            "score": 0.9511095881462097,
            "locale": "",
            "boundingBox": {
                "tl": {
                    "x": 919,
                    "y": 38
                },
                "tr": {
                    "x": 2998,
                    "y": 38
                },
                "br": {
                    "x": 2998,
                    "y": 2066
                },
                "bl": {
                    "x": 919,
                    "y": 2066
                }
            }
        }
    ],
    "success": true,
    "dimensions": {
        "height": 2160,
        "width": 3840,
        "type": "png"
    }
}
关注者:0
API 创建者:
Rapid account: Karo Mkrtchyan
Karo Mkrtchyan
mkrtchyankaro-A_M729L_lrj
登录并给 API 打分
打分:5 - 投票:1