Logo Detection

FREEMIUM
By Karo Mkrtchyan | Updated 1ヶ月前 | Visual Recognition
Popularity

4.9 / 10

Latency

2,121ms

Service Level

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"
    }
}
Followers: 0
API Creator:
Rapid account: Karo Mkrtchyan
Karo Mkrtchyan
mkrtchyankaro-A_M729L_lrj
Log In to Rate API
Rating: 5 - Votes: 1