腾讯云本地图片的文字识别。

Posted cxl07325

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了腾讯云本地图片的文字识别。相关的知识,希望对你有一定的参考价值。

1.安装腾讯云的python包:pip install tencentcloud-sdk-python

2.直接上代码吧:

import re
import base64

from tencentcloud.common import credential
from tencentcloud.common.profile.client_profile import ClientProfile
from tencentcloud.common.profile.http_profile import HttpProfile
from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException
from tencentcloud.ocr.v20181119 import ocr_client, models

secret_id = "xxx"
secret_key = "xxx"


def get_tencent_reg(img_file_dir):
try:
with open(img_file_dir, ‘rb‘) as f:
img_data = f.read()
img_base64 = base64.b64encode(img_data)
params = ‘{"ImageBase64":"‘ + str(img_base64, ‘utf-8‘) + ‘"}‘

cred = credential.Credential(secret_id, secret_key)
httpProfile = HttpProfile()
httpProfile.endpoint = "ocr.tencentcloudapi.com"

clientProfile = ClientProfile()
clientProfile.httpProfile = httpProfile

client = ocr_client.OcrClient(cred, "ap-guangzhou", clientProfile)

req = models.GeneralBasicOCRRequest()
req.from_json_string(params)
resp = client.GeneralBasicOCR(req).to_json_string()
ret_list = re.findall( r‘"DetectedText": "(.*?)"‘, resp)
return 0,ret_list


except TencentCloudSDKException as err:
print(err)
return -1, []

以上是关于腾讯云本地图片的文字识别。的主要内容,如果未能解决你的问题,请参考以下文章

云+社区分享——腾讯云OCR文字识别

调用阿里云的通用文字识别-高精版识别接口,识别图片中的文字详解

腾讯云助力中国物流企业破局,OCR文字识别技术与中外运合作场景

我的 Serverless 实战 — Serverless 腾讯云文字识别(OCR)详细部署过程

如何精准实现OCR文字识别?

如何精准实现OCR文字识别?