Watermark and QR Code Recognition (Watermark)
Updated at:2025-11-03
Function description
Watermark detection
Request parameters
None
Response value
| Parameters | Types | Required | Description |
|---|---|---|---|
| log_id | uint64 | Yes | Request identifier, a random and unique number |
| result_num | uint32 | No | Number of response results, i.e., the number of elements in the result array |
| result | array(object) | No | Response result array, each item as a detected result |
Each item in the result contains the following fields:
| Parameters | Types | Required | Description |
|---|---|---|---|
| location | object | No | Position information (pixel position from left, pixel position from top, pixel width, pixel height) |
| probability | double | Yes | Classification result confidence: [0-1.0] |
| type | string | Yes | Type of response result (watermark, bar code, QR code) |
Response example
Plain Text
1{
2 "result": [{
3 "probability": 0.99872654676437,
4 "type": "watermark"
5 },
6 {
7 "probability": 0.98578763008118,
8 "type": "watermark"
9 }],
10 "log_id": 686882979,
11 "result_num": 2
12}
