Watermark QR Code Recognition
Last Updated:2021-12-08
Feature Description
Watermark detection
Query Parameters
None
Return Value
| Parameters | Type | Required | Description |
|---|---|---|---|
| log_id | uint64 | Yes | Request identification code, which is a unique random number. |
| result_num | uint32 | No | Number of results returned, i.e., number of elements in the results array. |
| result | array(object) | No | It returns the results array. Each item is a detected result. |
Each item of the element in the results contains the following fields:
| Parameters | Type | Required | Description |
|---|---|---|---|
| location | object | No | Position information (pixel position from left, pixel position from top, pixel width, and pixel height) |
| probability | double | Yes | Classification results confidence level [0-1.0] |
| type | string | Yes | Type of return results (watermark, bar code, and QR code) |
Return Example
{
"result": [{
"probability": 0.99872654676437,
"type": "watermark"
},
{
"probability": 0.98578763008118,
"type": "watermark"
}],
"log_id": 686882979,
"result_num": 2
} 