图像抄表

功能介绍

接口能力:图像抄表能力是用于水、电、燃气等非智能表计的远程、智能化抄读;定位图片中机械表字轮识读区域,识别表计读数,准确率高达99%。

业务应用:远程抄读水、电、燃气等各类表计读数,减少人力投入,提高抄表效率,便于统一管理。

API调用方式

请求方式 POST
url http://ai.heclouds.com:9090/v1/aiApi/picture/AMMETER_READ
http-header Login-Token: xxxxxxxxxxxxxxxxx(用户鉴权接口返回结果loginToken )
Content-Type:application/json
request-body {
    "type": "GPU", //可选参数,“GPU”表示使用GPU版本api,否则使用CPU版本api
    "picture": ["String"] //一张图片的base64图片编码
}
成功返回结果 {
    "stateCode":"0x0000", //结果状态码,16进制。"0x0000":成功;"0x240B":调用次数超过最大限制;"0x240C":调用频率过快;
    "message":"success", //返回信息
    "data":"String" //读出的数字、置信度分数、读数的坐标位置
}
例如data字段为:00165,0.58,80,114,51,86,161,117,44,79,248,103,48,90,331,102,48,86,418,102,48,87
00165是读数,
0.58是置信度分数,
从第三个数字开始,每4个数字为一组,这5组数字从左到右依次表示5位电表读数在图片中的坐标位置信息。图像抄表的输出结果,会以矩形框标出每个读数在图片中的位置;例如“00165,0.58”后面的第一组数字“80,114,51,86”,是指在以图片左上角为原点的坐标系中,第一位读数“0”的矩形框的位置信息,其中80表示X坐标:80px,114表示Y坐标:-114px,51表示矩形宽:51px,86表示矩形高:86px。
注意:
http错误码返回"401"时表示"未经授权",造成的原因有:未使用或使用的token不正确;使用的token已经超时失效。

请求示例

bash
Java
Python
C++
C#
Node

bash示例如下:

// 图像抄表
curl -X POST \
  http://ai.heclouds.com:9090/v1/aiApi/picture/AMMETER_READ \
  -H 'Cache-Control: no-cache' \
  -H 'Content-Type: application/json' \
  -H 'Login-Token: 请自行替换Login-Token' \
  -d '{
 "type":["type为可选参数,填入“GPU”则代表使用GPU版本api,否则使用CPU版本api"],
 "picture": ["请替换图片(base64编码的图片数据)"]
}
'

Java示例如下:

import java.util.HashMap;
import java.util.Map;

import com.mobile.analysis.Base64Img;
import com.mobile.analysis.HttpUtil;
/**
 * 电/水表读数
 */
public class AmmeterRead {

    public static void main(String[] agrs){
        //电表读数
        ammeterRead();
    }

    /**
     * 下载工具包
     * http://open.iot.10086.cn/ai/code/java.zip
     */
    private static void ammeterRead() {
        String path = "http://ai.heclouds.com:9090/v1/aiApi/picture/AMMETER_READ";
        String loginToken = "【获取loginToken】";

        //图片信息
        Map<String, Object> params = new HashMap<>();
        //方式一:网络读数图片
        String imgURL = "http://mpic.tiankong.com/e37/96c/e3796c23959a1c4bf86a5a593b53f548/640.jpg";
        String pic1 = Base64Img.GetImageStrFromUrl(imgURL);

        //方式二:本地读数图片
        //String pic1 = Base64Img.GetImageStrFromPath("【本地图片文件】");
        String[] value = {pic1};
        params.put("picture", value);
        params.put("type", "GPU");//可选参数,填入“GPU”则代表使用GPU版本api,否则使用CPU版本api
        try {
            //调用
            String result = HttpUtil.post(path, loginToken, params);
            System.out.println("result:" + result);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

}

Python示例如下:

import requests
import json
import base64

url = 'http://ai.heclouds.com:9090/v1/aiApi/picture/AMMETER_READ'
headers ={
    'Content-Type':'application/json',
    'Login-Token':'xxxxxxxxxxxxxxxxx(用户鉴权接口返回结果loginToken)'
    }
file = open('用户上传图片位置','rb')
str = base64.b64encode(file.read()).decode()
file.close()
data = {
  'type':'GPU', #可选参数,填入“GPU”则代表使用GPU版本api,否则使用CPU版本api
  'picture':[str]
}
req = requests.post(url,data=json.dumps(data),headers=headers)
print(req.text)

C++示例如下:

/*注意:完整工程地址,请从这里下载:http://open.iot.10086.cn/ai/code/cpp/OneNETAiApi.zip*/
#include<iostream>
#include"APIData.hpp"
using namespace std;
/*
*使用完整工程时,请复制此页的main函数,填入到工程main.cpp文件中
*其它api请求用法示例  请参考官网帮助文档(c++版)
*官网帮助文档地址:https://open.iot.10086.cn/ai/helpCenter.html#/helpHome?categoryType=2
*/
int main(int argc, char* argv[])
{
    //api请求地址
    const string url = "http://ai.heclouds.com:9090";
    //初始化一个对象,并传入参数url(api请求地址)
    OneNETAiApiRequest aiApiRequest(url);
    //用户名
    string account = "【替换成自已的用户名】";
    //密码
    string password = "【替换成自已的用户密码】";
    //可选参数,填入“GPU”则代表使用GPU版本api,否则使用CPU版本api
    string type = "GPU";
    //存储返回结果
    string result;
    //存储token鉴权数据
    string token;
    //图片路径
    string picPath;
    do
    {
        //给图片路径赋值
#if defined (WIN32)
        picPath = "testData/ammeter.jpg";
#elif defined(__linux__)
        if (argc < 2) {
            cout << "param error!  run like this: " << endl << "./OneNETAiApi testData/ammeter.jpg" << endl;
            break;
        }
        picPath = argv[1];
#endif
        //登陆获取token
        if (!loginToken(result, &aiApiRequest, account, password)) {
            cout << "login failed,result is: " << result << endl;
            break;
        }
        IFEMPTYBRREAK(result.empty());
        token = result;
        cout << "login success,token is: " << token << endl;
        //执行图像抄表api请求
        if (!ammeterRead(result, &aiApiRequest, token, picPath,type)) {
            cout << "ammeterRead failed,result is: " << result << endl;
            break;
        }
        cout << "\n ammeterRead result :" << result << endl;
    } while (false);
    return 0;
}

C#示例如下:

using System;
using System.IO;
using LitJson;
using RestSharp;

namespace ConsoleApplication1
{
    class Program
    {

        //电表读数功能
        //注意:需要引用外部LitJson和RestSharp库

        static void Main(string[] args)
        {
            var token = "";//请用户通过用户鉴权接口获取token
            string sFilePath = "D:\\OneNETdiskDownload\\test.jpg"; //图片文件路径
            var client = new RestClient("http://ai.heclouds.com:9090/v1/aiApi/picture/AMMETER_READ");
            var request = new RestRequest(Method.POST);
            request.AddHeader("Login-Token", token);
            request.AddHeader("cache-control", "no-cache");
            request.AddHeader("content-type", "application/json");


            Byte[] bt = File.ReadAllBytes(sFilePath);
            string sPicture = Convert.ToBase64String(bt);
            JsonData jd = new JsonData();
            jd["type"] = "GPU";//可选参数,填入“GPU”则代表使用GPU版本api,否则使用CPU版本api
            jd["picture"] = new JsonData();
            jd["picture"].Add(sPicture);
            request.AddParameter("application/json", jd.ToJson(), ParameterType.RequestBody);

            IRestResponse response = client.Execute(request);
            Console.WriteLine(response.Content);
            Console.ReadKey();
        }

    }
}

Node示例如下:

/*
*desc:图像抄表
*version:1.0
*time:2018-07-24
*/
const http = require('http');//引入http模块,用于使用HTTP服务器与客户端
const fs = require('fs');//引入fs模块,用于与文件系统进行交互
const mineType = require('mime-types');//需要安装模块“mime-types”,安装方法:npm install mime-types
let filePath = 'D:/mydownload/aaa.jpg';//图片路径
let data = fs.readFileSync(filePath);//读取文件
data = Buffer.from(data).toString('base64');//转换为“base64”格式
let base64Data = 'data:' + mineType.lookup(filePath) + ';base64,' + data;//补充完整图片信息
console.log(base64Data);
const loginToken = 'KEFxABCxKUVzO0F1*Ua2OER4O0R0*EABCEFxfUBxKUVzO0F1*Ua2OER4O0R0*EJAU2LLS1W*Um_KQUF2K0F4KlV6K0FA*Ea1KEBAKUV0KUiyKlK0KU1yQUR0OERyKlB3QUF3KUR3';//用户鉴权接口返回结果loginToken,此处仅作为示例
//请求配置信息
const options = {
    host: 'ai.heclouds.com',//IP地址
    port: 9090,//端口号
    path: '/v1/aiApi/picture/AMMETER_READ',//请求路径
    method: 'POST',//请求类型
    headers:{//请求头信息
        'Content-Type': 'application/json',
        'Login-Token': loginToken
    }
};
//建立请求
const httpreq = http.request(options, (httpres) => {
    let size = 0;//计数请求响应结果的大小
    let chunks = [];//保存请求响应结果
    httpres.on('data', function (chunk) {
        let tempBuffer = Buffer.from(chunk);
        chunks.push(tempBuffer);
        size += tempBuffer.length;
    });
    httpres.on('end', function () {
        console.log('状态码:'+httpres.statusCode);
        let bufferData = Buffer.concat(chunks,size);
        let result = JSON.parse(bufferData.toString());
        console.log('响应长度:'+size);
        console.log('响应结果:');
        console.log(result);
    });
}).on('error', (e) => {
    console.log(e.stack);
});
let requestBody = {
    "type":"GPU", //可选参数,填入“GPU”则代表使用GPU版本api,否则使用CPU版本api
    "picture":[base64Data],
};
httpreq.write(JSON.stringify(requestBody));// 写入数据到请求主体
httpreq.end();//结束发送请求

个搜索结果,搜索内容 “

    0 个搜索结果,搜索内容 “