API Documents
Web API
URL:
http://api.angeleyes.it/identify.[json|xml]Function: Identify specified image
Supported Format:
json,xmlHTTP Request Method:
POSTRequest Parameters
pic: image must use enctype="multipart/from-data" method to submit data
app_key: app key required
app_secret:app secret required
r: primary threshold, effective range is [0.16, 0.25]. As the range grows, the image recognition rate increases, but takes longer. Optional
rr: error sum of square threshold, effective range is [0.16, 0.25]. As the range grows, image recognition rate increases, but takes longer. Optional
max_drift: anti-wrinkle parameters,effective range is [4,36]. If there is a "crumpled" object among the images to be recognized , maxdrift should be set larger, otherwise it should be set smaller. Optional.
scale: image zoom coefficient, effective range is [0.0, 1.0]. Optional.
kp_count: number of reserved feature points, effective range is [50, 256]. As kpcount increases, the image recognition rate increases, but takes longer. If the images to be matched are relatively complex (rich in content), kp_count should be set higher. Setting kp_count to 200 usually achieves the highest accuracy rate. Optional.
Attention:
Use enctype="multipart/form-data" method to submit dataReturn Results:
json:{ tags:[""] error:"" }
xml:
<ae>
<tags>
<tag></tag>
</tags>
<error></error>
</ae>
Field Explanation:
tag: return tag array
error:If an error occurred, then error information is provided here, under normal circumstances it is blank
