Process an image by URL
GET
api/v2/detect/images/:modelProcess an image by URL
Path Parameters
- model string required
The mode of the detection. Allowed values: logo, object or scene.
Example: logo
Query Parameters
- image_url string required
URL where to download the image.
Example: https://i.pinimg.com/originals/50/6e/d8/506ed8d71b3c287cf549a6f586587736.jpg - detect string
Only for logos, List of logo IDs to detect in the image.
Example: audi,bmw
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"request": "GET /api/v2/detect/images/logo?image_url=https://i.pinimg.com/originals/50/6e/d8/506ed8d71b3c287cf549a6f586587736.jpg&detect=audi,bmw&access_token=abcd_1234_abcd",
"request_id": "#r8w7jw81fpll#",
"result_processing": {
"height": 430,
"match": [
{
"bottom": 283,
"confidence": 0.6167415976524353,
"id": "audi",
"left": 122,
"right": 239,
"top": 209
}
],
"width": 720
},
"status_code": "0",
"status_message": "OK"
}
Loading...