Existing similar target images | POST /similar
Check whether an image similar to the target image already exists in the gallery. It is recommended to use this API before creating a new target.
Action
POST /similar
Authentication
Http Header
Content-Type=application/json
HTTP Header: Authorization (when using API Key Token authentication)
Request parameters
| Field | Type | Required | Description |
|---|---|---|---|
| image | String(base64) | Yes | Base64-encoded string of the image content. JPG and PNG images are supported. |
Response fields
| Field | Description | |
|---|---|---|
| statusCode | Status code. 0 indicates successful authentication. For more information, see Status codes | |
| result | Error message, or result: an array of multiple similar target images. If result is an empty array, no similar image exists | |
| timestamp | Server time when the response is returned. Uses Unix timestamp format in milliseconds |
Error codes
See Status codes and error codes
Request example
POST /similar/ HTTP/1.1
Host:
Date: Mon, 1 Jan 2018 00:00:00 GMT
Content-Type: application/json
{
"image":"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgM...",
"timestamp": 1514736000000,
"appKey": "test_app_key",
"signature": "89985e2420899196db5bdf16b3c2ed0922c0c221"
}
Response example
HTTP/1.1 200 OK
Content-Type: application/json
{
"statusCode": 0,
"result": {
"date": "2016-06-15T09:58:51.000Z",
"results":[
{
"targetId":"e61db301-e80f-4025-b822-9a00eb48d8d2",
"trackingImage":"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgM...",
"name": "easyar",
"size": "5",
"meta": "496fbbabc2b38ecs3460a...",
"type": "ImageTarget",
"date": "2016-06-15T09:56:30.000Z",
"active":"1",
"trackableRate": 0,
"detectableRate": 0,
"detectableDistinctiveness":0,
"detectableFeatureCount": 0,
"trackableDistinctiveness": 0,
"trackableFeatureCount": 0,
"trackableFeatureDistribution": 0,
"trackablePatchContrast": 0,
"trackablePatchAmbiguity": 0
}
]
},
"timestamp": 1514736000000,
}