更新时间:2024-01-11 gmt 08:00

通用表格识别-凯发k8国际娱乐官网入口

功能介绍

识别表格图片中的文字内容,并将识别的结果以json格式返回给用户。返回结果将图片区域(words_region)划分为两类:纯文本区(text)和表格区(table),并返回表格结构(row, column)和文本信息。该接口的使用限制请参见约束与限制,详细使用指导请参见ocr服务使用简介章节。

对于相同板式的图片,可以使用modelarts pro服务提供的,零代码搭建出专属的api,详细操作请参见。

图1 通用表格示例图

约束与限制

  • 只支持识别png、jpg、jpeg、bmp、tiff格式图片。
  • 图像各边的像素大小在15px到8192px之间。
  • 图像中识别区域有效占比超过80%,保证整张表格及其边缘包含在图像内。
  • 支持图像任意角度的水平旋转。
  • 目前不支持复杂背景(如户外自然场景、防伪水印等)和表格线扭曲图像的文字识别。
  • 支持中英文以及部分繁体字。

调用方法

请参见。

前提条件

在使用之前,需要您完成服务申请和认证鉴权,具体操作流程请参见开通服务和章节。

用户首次使用需要先。服务只需要开通一次即可,后面使用时无需再次申请。如未开通服务,调用服务时会提示modelarts.4204报错,请在调用服务前先进入控制台开通服务,并注意开通服务区域与调用服务的区域保持一致。

uri

post /v2/{project_id}/ocr/general-table

表1 路径参数

参数

是否必选

说明

endpoint

终端节点,即调用api的请求地址。

不同服务不同区域的endpoint不同,您可以从中获取。

例如,ocr服务在“华北-北京四”区域的“endpoint”“ocr.cn-north-4.myhuaweicloud.com”

project_id

项目id,您可以从中获取。

请求参数

表2 请求header参数

参数

是否必选

参数类型

描述

x-auth-token

string

用户token。

用于获取操作api的权限。响应消息头中x-subject-token的值即为token。

content-type

string

发送的实体的mime类型,参数值为“application/json”。

enterprise-project-id

string

企业项目id。ocr支持通过企业项目管理(eps)对不同用户组和用户的资源使用,进行分账。

获取方法:进入“”页面,单击企业项目名称,在企业项目详情页获取enterprise-project-id(企业项目id)。

企业项目创建步骤请参见用户指南。

说明:

创建企业项目后,在传参时,有以下三类场景。

  • 携带正确的id,正常使用ocr服务,账单归到企业id对应的企业项目中。
  • 携带错误的id,正常使用ocr服务,账单的企业项目会被分类为“未归集”。
  • 不携带id,正常使用ocr服务,账单的企业项目会被分类为“未归集”。
表3 请求body参数

参数

是否必选

类型

说明

image

string

该参数与url二选一。

图片的base64编码,要求base64编码后大小不超过10mb。

图片最短边不小于15px,最长边不超过8192px,支持jpeg、jpg、png、bmp、tiff格式。

图片base64编码示例如/9j/4aaqskzjrgabag...,带有多余前缀会产生the image format is not supported报错。

url

string

该参数与image二选一。图片的url路径,目前支持:

  • 公网http/https url例如https://support.huaweicloud.com/api-ocr/zh-cn_image_0282767866.png
  • obs提供的url,使用obs数据需要进行授权。包括对服务授权、临时授权、匿名公开授权,详情参见。
说明:
  • 接口响应时间依赖于图片的下载时间,如果图片下载时间过长,会返回接口调用失败。
  • 请保证被检测图片所在的存储服务稳定可靠,推荐使用obs服务存储图片数据。
  • url中不能存在中文字符,若存在,中文需要进行utf8编码。

return_text_location

boolean

返回文本块坐标及单元格坐标信息,可选值如下所示。

  • true:返回文本块和单元格坐标
  • false:不返回

如果未传入该参数时默认为false,即不返回。

return_char_location

boolean

返回单字符的坐标信息,可选值包括:

  • true:返回单字符的坐标
  • false:不返回

未传入该参数时默认为false,即不返回。如果此参数为true时,return_text_location必须为true

return_confidence

boolean

是否返回置信度的开关,可选值如下所示。

  • true:返回置信度
  • false:不返回置信度

如果未传入该参数,系统默认为“false”,即不返回置信度。

return_excel

boolean

是否返回表格转换microsoft excel的base64编码字段。可选值包括:

  • true: 返回'excel'字段,表示xlsx格式的表格识别结果的base64编码
  • false: 不返回。默认为false

对返回的excel编码,可用python函数 base64.b64decode解码后保存为.xlsx文件。

return_rectification_matrix

boolean

可选值包括:

  • true:返回透视变换矩阵
  • false:不返回

未传入该参数时默认为false,即不返回透视变换矩阵。

with_borders

boolean

可选值包括:

  • true:输入图像仅包含有线表格,仅进行有线表格识别。
  • false: 输入图像可能包含无线表格,同时进行有线表格与无线表格识别。

未传入该参数时默认为false,即同时进行有线表格与无线表格识别。当确认输入仅包含有线表格时,该参数设为true可达到更优识别效果。

响应参数

根据识别的结果,可能有不同的http响应状态码(status code)。例如,200表示api调用成功,400表示调用失败,详细的状态码和响应参数说明如下。

状态码: 200

表4 响应body参数

参数

参数类型

描述

result

generaltableresult object

调用成功时表示调用结果。

调用失败时无此字段。

表5 generaltableresult

参数

参数类型

描述

words_region_count

integer

文字区域数目。

words_region_list

array of wordsregionlist objects

文字区域识别结果列表,输出顺序从左到右,先上后下。

excel

string

表格图像转换为excel的base64编码,图像中的文字和表格按位置写入excel。对返回的excel编码可用base64.b64decode解码并保存为.xlsx文件。

表6 wordsregionlist

参数

参数类型

描述

type

string

文字识别区域类型。

  • text:文本识别区域;
  • table:表格识别区域。

words_block_count

integer

子区域识别文字块数目。

words_block_list

array of generaltablewordsblocklist objects

子区域识别文字块列表,输出顺序从左到右,先上后下。

表7 generaltablewordsblocklist

参数

参数类型

描述

words

string

文字块识别结果。

confidence

float

字段的平均置信度,置信度越大,表示本次识别的对应字段的可靠性越高,在统计意义上,置信度越大,准确率越高。置信度由算法给出,不直接等价于对应字段的准确率。

location

array>

文字块位置信息,列表形式,分别表示文字块4个顶点的x, y坐标;坐标原点为图片左上角,x轴沿水平方向,y轴沿竖直方向。

words_list

array of wordslistiem objects

单元格内文字段列表。输出顺序从左到右,从上到下。仅当入参"return_text_location"为true时存在。

rows

array of integers

文字块占用的行信息,编号从0开始,列表形式,数据类型为integer。仅在表格区域内有效,即type字段为"table"时该字段有效。

columns

array of integers

文字块占用的列信息,编号从0开始,列表形式,数据类型为integer。仅在表格区域内有效,即type字段为"table"时该字段有效。

cell_location

array>

单元格位置信息,列表形式,分别表示单元格4个顶点的x, y坐标;坐标原点为图片左上角,x轴沿水平方向,y轴沿竖直方向。

表8 wordslistiem

参数

参数类型

描述

words

string

文字块识别结果。

confidence

float

字段的平均置信度,置信度越大,表示本次识别的对应字段的可靠性越高,在统计意义上,置信度越大,准确率越高。置信度由算法给出,不直接等价于对应字段的准确率。

location

array>

文字块位置信息,列表形式,分别表示文字块4个顶点的x, y坐标;坐标原点为图片左上角,x轴沿水平方向,y轴沿竖直方向。

char_list

array of charlistiem objects

单元格内文字段列表。输出顺序从左到右,从上到下。仅当入参"return_text_location"和"return_char_location"同时为true时存在。

表9 charlistiem

参数

参数类型

描述

char

string

单字符识别结果。

char_confidence

float

单字符的置信度,置信度越大,表示本次识别的文字的可靠性越高,在统计意义上,置信度越大,准确率越高。置信度由算法给出,不直接等价于对应字段的准确率。

char_location

array>

单字符的位置信息,列表形式,分别表示文字块4个顶点的x, y坐标;坐标原点为图片左上角,x轴沿水平方向,y轴沿竖直方向。

状态码: 400

表10 响应body参数

参数

参数类型

描述

error_code

string

调用失败时的错误码,具体请参见。

当出现错误码“modelarts.4204”时,请参考为什么调用api时提示“modelarts.4204”?章节。

调用成功时不返回此字段。

error_msg

string

调用失败时的错误信息。 调用成功时无此字段。

请求示例

  • “endpoint”即调用api的请求地址,不同服务不同区域的“endpoint”不同,具体请参见。

    例如,通用表格识别服务部署在“华北-北京四”区域的“endpoint”“ocr.cn-north-4.myhuaweicloud.com”“ocr.cn-north-4.myhuaweicloud.cn”,请求url为“https://ocr.cn-north-4.myhuaweicloud.com/v2/{project_id}/ocr/general-table”“project_id”为项目id,获取方法请参见。

  • 如何获取token请参见。
  • 传入表格图片的base64编码文字识别,并不返回置信度信息
    post https://{endpoint}/v2/{project_id}/ocr/general-table
     request header:   
     content-type: application/json   
     x-auth-token: miinrwyjkozihvcnaqccoiinodccdtqcaqexdtalbglghkgbzqmeagewgguvbgkqhkig...      
     request body:
     {   
        "image":"/9j/4aaqskzjrgabageasabiaad/4rfzrxhpzgaatu0akgaaaag...",
        "return_confidence":false
      }
  • 传入表格图片的url进行文字识别,并不返回置信度信息
    post https://{endpoint}/v2/{project_id}/ocr/general-table
     request header:   
     content-type: application/json   
     x-auth-token: miinrwyjkozihvcnaqccoiinodccdtqcaqexdtalbglghkgbzqmeagewgguvbgkqhkig...      
     request body:
     {
         "url":"https://bucketname.obs.xxxx.com/objectname",
         "return_confidence":false
      }

响应示例

状态码: 200

成功响应样例

{
  "result" : {
    "words_region_count" : 2,
    "words_region_list" : [ {
      "type" : "text",
      "words_block_count" : 1,
      "words_block_list" : [ {
        "words" : "文字区域识别文字块1",
        "confidence" : 0.9991
      } ]
    }, {
      "type" : "table",
      "words_block_count" : 2,
      "words_block_list" : [ {
        "words" : "表格区域识别文字块1",
        "confidence" : 0.9942,
        "rows" : [ 0 ],
        "columns" : [ 0 ]
      }, {
        "words" : "表格区域识别文字块2",
        "confidence" : 0.914,
        "rows" : [ 0 ],
        "columns" : [ 1, 2 ]
      } ]
    } ]
  }
}

状态码: 400

失败响应样例

{
  "result" : {
    "error_code" : "ais.0103",
    "error_msg" : "the image size does not meet the requirements."
  }
}

sdk代码示例

sdk代码示例如下。

  • 传入表格图片的base64编码进行文字识别,并不返回置信度信息
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    package com.huaweicloud.sdk.test;
    import com.huaweicloud.sdk.core.auth.icredential;
    import com.huaweicloud.sdk.core.auth.basiccredentials;
    import com.huaweicloud.sdk.core.exception.connectionexception;
    import com.huaweicloud.sdk.core.exception.requesttimeoutexception;
    import com.huaweicloud.sdk.core.exception.serviceresponseexception;
    import com.huaweicloud.sdk.ocr.v1.region.ocrregion;
    import com.huaweicloud.sdk.ocr.v1.*;
    import com.huaweicloud.sdk.ocr.v1.model.*;
    public class recognizegeneraltablesolution {
        public static void main(string[] args) {
            // the ak and sk used for authentication are hard-coded or stored in plaintext, which has great security risks. it is recommended that the ak and sk be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
            // in this example, ak and sk are stored in environment variables for authentication. before running this example, set environment variables cloud_sdk_ak and cloud_sdk_sk in the local environment
            string ak = system.getenv("cloud_sdk_ak");
            string sk = system.getenv("cloud_sdk_sk");
            icredential auth = new basiccredentials()
                    .withak(ak)
                    .withsk(sk);
            ocrclient client = ocrclient.newbuilder()
                    .withcredential(auth)
                    .withregion(ocrregion.valueof(""))
                    .build();
            recognizegeneraltablerequest request = new recognizegeneraltablerequest();
            generaltablerequestbody body = new generaltablerequestbody();
            body.withreturnconfidence(false);
            body.withimage("/9j/4aaqskzjrgabageasabiaad/4rfzrxhpzgaatu0akgaaaa...");
            request.withbody(body);
            try {
                recognizegeneraltableresponse response = client.recognizegeneraltable(request);
                system.out.println(response.tostring());
            } catch (connectionexception e) {
                e.printstacktrace();
            } catch (requesttimeoutexception e) {
                e.printstacktrace();
            } catch (serviceresponseexception e) {
                e.printstacktrace();
                system.out.println(e.gethttpstatuscode());
                system.out.println(e.getrequestid());
                system.out.println(e.geterrorcode());
                system.out.println(e.geterrormsg());
            }
        }
    }
    
  • 传入表格图片的url进行文字识别,并不返回置信度信息
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    package com.huaweicloud.sdk.test;
    import com.huaweicloud.sdk.core.auth.icredential;
    import com.huaweicloud.sdk.core.auth.basiccredentials;
    import com.huaweicloud.sdk.core.exception.connectionexception;
    import com.huaweicloud.sdk.core.exception.requesttimeoutexception;
    import com.huaweicloud.sdk.core.exception.serviceresponseexception;
    import com.huaweicloud.sdk.ocr.v1.region.ocrregion;
    import com.huaweicloud.sdk.ocr.v1.*;
    import com.huaweicloud.sdk.ocr.v1.model.*;
    public class recognizegeneraltablesolution {
        public static void main(string[] args) {
            // the ak and sk used for authentication are hard-coded or stored in plaintext, which has great security risks. it is recommended that the ak and sk be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
            // in this example, ak and sk are stored in environment variables for authentication. before running this example, set environment variables cloud_sdk_ak and cloud_sdk_sk in the local environment
            string ak = system.getenv("cloud_sdk_ak");
            string sk = system.getenv("cloud_sdk_sk");
            icredential auth = new basiccredentials()
                    .withak(ak)
                    .withsk(sk);
            ocrclient client = ocrclient.newbuilder()
                    .withcredential(auth)
                    .withregion(ocrregion.valueof(""))
                    .build();
            recognizegeneraltablerequest request = new recognizegeneraltablerequest();
            generaltablerequestbody body = new generaltablerequestbody();
            body.withreturnconfidence(false);
            body.withurl("https://bucketname.obs.myhuaweicloud.com/objectname");
            request.withbody(body);
            try {
                recognizegeneraltableresponse response = client.recognizegeneraltable(request);
                system.out.println(response.tostring());
            } catch (connectionexception e) {
                e.printstacktrace();
            } catch (requesttimeoutexception e) {
                e.printstacktrace();
            } catch (serviceresponseexception e) {
                e.printstacktrace();
                system.out.println(e.gethttpstatuscode());
                system.out.println(e.getrequestid());
                system.out.println(e.geterrorcode());
                system.out.println(e.geterrormsg());
            }
        }
    }
    
  • 传入表格图片的base64编码进行文字识别,并不返回置信度信息
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    # coding: utf-8
    from huaweicloudsdkcore.auth.credentials import basiccredentials
    from huaweicloudsdkocr.v1.region.ocr_region import ocrregion
    from huaweicloudsdkcore.exceptions import exceptions
    from huaweicloudsdkocr.v1 import *
    if __name__ == "__main__":
        # the ak and sk used for authentication are hard-coded or stored in plaintext, which has great security risks. it is recommended that the ak and sk be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
        # in this example, ak and sk are stored in environment variables for authentication. before running this example, set environment variables cloud_sdk_ak and cloud_sdk_sk in the local environment
        ak = os.getenv("cloud_sdk_ak")
        sk = os.getenv("cloud_sdk_sk")
        credentials = basiccredentials(ak, sk) \
        client = ocrclient.new_builder() \
            .with_credentials(credentials) \
            .with_region(ocrregion.value_of("")) \
            .build()
        try:
            request = recognizegeneraltablerequest()
            request.body = generaltablerequestbody(
                return_confidence=false,
                image="/9j/4aaqskzjrgabageasabiaad/4rfzrxhpzgaatu0akgaaaa..."
            )
            response = client.recognize_general_table(request)
            print(response)
        except exceptions.clientrequestexception as e:
            print(e.status_code)
            print(e.request_id)
            print(e.error_code)
            print(e.error_msg)
    
  • 传入表格图片的url进行文字识别,并不返回置信度信息
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    # coding: utf-8
    from huaweicloudsdkcore.auth.credentials import basiccredentials
    from huaweicloudsdkocr.v1.region.ocr_region import ocrregion
    from huaweicloudsdkcore.exceptions import exceptions
    from huaweicloudsdkocr.v1 import *
    if __name__ == "__main__":
        # the ak and sk used for authentication are hard-coded or stored in plaintext, which has great security risks. it is recommended that the ak and sk be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
        # in this example, ak and sk are stored in environment variables for authentication. before running this example, set environment variables cloud_sdk_ak and cloud_sdk_sk in the local environment
        ak = os.getenv("cloud_sdk_ak")
        sk = os.getenv("cloud_sdk_sk")
        credentials = basiccredentials(ak, sk) \
        client = ocrclient.new_builder() \
            .with_credentials(credentials) \
            .with_region(ocrregion.value_of("")) \
            .build()
        try:
            request = recognizegeneraltablerequest()
            request.body = generaltablerequestbody(
                return_confidence=false,
                url="https://bucketname.obs.myhuaweicloud.com/objectname"
            )
            response = client.recognize_general_table(request)
            print(response)
        except exceptions.clientrequestexception as e:
            print(e.status_code)
            print(e.request_id)
            print(e.error_code)
            print(e.error_msg)
    
  • 传入表格图片的base64编码进行文字识别,并不返回置信度信息
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    package main
    import (
    	"fmt"
    	"github.com/huaweicloud/huaweicloud-sdk-go-v3/core/auth/basic"
        ocr "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/ocr/v1"
    	"github.com/huaweicloud/huaweicloud-sdk-go-v3/services/ocr/v1/model"
        region "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/ocr/v1/region"
    )
    func main() {
        // the ak and sk used for authentication are hard-coded or stored in plaintext, which has great security risks. it is recommended that the ak and sk be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
        // in this example, ak and sk are stored in environment variables for authentication. before running this example, set environment variables cloud_sdk_ak and cloud_sdk_sk in the local environment
        ak := os.getenv("cloud_sdk_ak")
        sk := os.getenv("cloud_sdk_sk")
        auth := basic.newcredentialsbuilder().
            withak(ak).
            withsk(sk).
            build()
        client := ocr.newocrclient(
            ocr.ocrclientbuilder().
                withregion(region.valueof("")).
                withcredential(auth).
                build())
        request := &model.recognizegeneraltablerequest{}
    	returnconfidencegeneraltablerequestbody:= false
    	imagegeneraltablerequestbody:= "/9j/4aaqskzjrgabageasabiaad/4rfzrxhpzgaatu0akgaaaa..."
    	request.body = &model.generaltablerequestbody{
    		returnconfidence: &returnconfidencegeneraltablerequestbody,
    		image: &imagegeneraltablerequestbody,
    	}
    	response, err := client.recognizegeneraltable(request)
    	if err == nil {
            fmt.printf("% v\n", response)
        } else {
            fmt.println(err)
        }
    }
    
  • 传入表格图片的url进行文字识别,并不返回置信度信息
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    package main
    import (
    	"fmt"
    	"github.com/huaweicloud/huaweicloud-sdk-go-v3/core/auth/basic"
        ocr "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/ocr/v1"
    	"github.com/huaweicloud/huaweicloud-sdk-go-v3/services/ocr/v1/model"
        region "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/ocr/v1/region"
    )
    func main() {
        // the ak and sk used for authentication are hard-coded or stored in plaintext, which has great security risks. it is recommended that the ak and sk be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
        // in this example, ak and sk are stored in environment variables for authentication. before running this example, set environment variables cloud_sdk_ak and cloud_sdk_sk in the local environment
        ak := os.getenv("cloud_sdk_ak")
        sk := os.getenv("cloud_sdk_sk")
        auth := basic.newcredentialsbuilder().
            withak(ak).
            withsk(sk).
            build()
        client := ocr.newocrclient(
            ocr.ocrclientbuilder().
                withregion(region.valueof("")).
                withcredential(auth).
                build())
        request := &model.recognizegeneraltablerequest{}
    	returnconfidencegeneraltablerequestbody:= false
    	urlgeneraltablerequestbody:= "https://bucketname.obs.myhuaweicloud.com/objectname"
    	request.body = &model.generaltablerequestbody{
    		returnconfidence: &returnconfidencegeneraltablerequestbody,
    		url: &urlgeneraltablerequestbody,
    	}
    	response, err := client.recognizegeneraltable(request)
    	if err == nil {
            fmt.printf("% v\n", response)
        } else {
            fmt.println(err)
        }
    }
    

更多编程语言的sdk代码示例,请参见的代码示例页签,可生成自动对应的sdk代码示例。

状态码

状态码

描述

200

成功响应样例

400

失败响应样例

状态码请参见。

错误码

错误码请参见。

分享:
网站地图