AI识图
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>AI识图接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://xx.com/api/ai/picture</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>请求头</h5>
<ul>
<li>Authorization: {token}</li>
</ul>
<h5>Body参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">picture_path</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>图片存储在服务器上的绝对路径</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {
&quot;code&quot;: 0,
&quot;msg&quot;: &quot;ok&quot;,
&quot;data&quot;: {
&quot;predicted_label&quot;: &quot;God-Morgon-Apple-Juice&quot;,
&quot;scores&quot;: [
[ &quot;God-Morgon-Apple-Juice&quot;, &quot;0.697&quot;],
[&quot;Garant-Ecological-Standard-Milk&quot;, &quot;0.235&quot;],
[&quot;God-Morgon-Orange-Red-Grapefruit-Juice&quot;, &quot;0.016&quot;],
[&quot;Granny-Smith&quot;, &quot;0.014&quot;],
[&quot;Garant-Ecological-Medium-Fat-Milk&quot;, &quot;0.010&quot;]
]
}
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">predicted_label</td>
<td style="text-align: left;">string</td>
<td>预测标签</td>
</tr>
<tr>
<td style="text-align: left;">scores</td>
<td style="text-align: left;">array</td>
<td>评分数组,其中每个元素表示预测结果 和 概率</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>