如何修改 result = json.loads(response.text) # 提取所有 words words_list = [] for item in result['words_result']: words_list.append(item['words']) # 将所有 words 合并成一个字符串,按段落分隔 content = '' for i in range(len(words_list)): content += words_list[i] if i < len(words_list) - 1 and words_list[i + 1].startswith('<div'): content += '\n\n' # 打印内容 print(content),保证识别文字间隔和图片上的保持一致
时间: 2024-03-24 17:40:29 浏览: 55
要修改这段代码,首先需要明确你的具体需求是什么。如果你想让识别出的文字间隔和图片上的保持一致,那么可以考虑在每个段落的末尾添加一个空格或者换行符。
具体地,可以在以下代码中加入一个判断,如果当前 word 是以 `<div` 开头,则在其前面先添加一个空格或者换行符,再添加当前 word:
```python
result = json.loads(response.text)
words_list = []
for item in result['words_result']:
words_list.append(item['words'])
content = ''
for i in range(len(words_list)):
if i > 0 and words_list[i].startswith('<div'):
content += '\n\n'
content += words_list[i] + ' '
print(content)
```
这样就可以保证每个段落之间有一个空格或者换行符隔开,和图片上的排版保持一致。
相关问题
def main(): url = "https://aip.baidubce.com/rest/2.0/ocr/v1/accurate_basic?access_token=" + get_access_token() # 获取剪贴板中的图片 image = ImageGrab.grabclipboard() # 如果剪贴板中存在图片,则将其转为base64编码 if image: buffered = BytesIO() image.save(buffered, format="JPEG") img_str = base64.b64encode(buffered.getvalue()).decode("utf-8") # 设置请求参数 payload = 'image=' + img_str headers = { 'Content-Type': 'application/x-www-form-urlencoded', 'Accept': 'application/json' } # 发送请求 response = requests.post(url, headers=headers, data=payload) # 处理响应结果 if response.status_code == 200: result = response.json() print(result) else: print('请求失败') # print(response.text) # 将 response.text 转换为字典格式 result = json.loads(response.text) # 提取所有 words words_list = [] for item in result['words_result']: words_list.append(item['words']) # 将所有 words 合并成一个字符串 content = ''.join(words_list) # 打印内容 print(content)有错误吗
这段代码可能有一些潜在的错误,需要具体查看运行环境和调用的函数库是否正确。以下是可能存在的问题:
1. 代码中调用了一个 `get_access_token()` 函数,但这个函数没有给出具体实现。如果这个函数没有正确实现或者返回的 token 无效,那么后面的 OCR 请求就会失败。
2. 如果剪贴板中不存在图片,那么 `image` 变量就会为空,后面的代码就会出错。需要加入对 `image` 变量是否为空的判断。
3. OCR 请求的 URL 可能不正确,需要根据具体的 API 文档来确定正确的 URL。
4. 请求的 headers 中的 `Content-Type` 和 `Accept` 可能不正确,需要根据具体的 API 文档来确定正确的 headers。
5. 如果 OCR 请求返回的状态码不是 200,那么后面的代码就会出错,需要加入对状态码的判断和错误处理。
6. 提取 OCR 结果中的 `words_result` 字段可能会出错,需要对返回结果进行详细的分析,确保代码正确提取 OCR 结果中的文字。
7. 最后合并 OCR 结果中的文字时,需要对每个 `item['words']` 进行判断是否存在,否则可能会因为存在空值而导致代码出错。
总之,这段代码需要根据具体情况进行完善和调试,确保代码的正确性和稳定性。
#!/usr/local/bin/python3 # -- coding: utf-8 -- # @Time : 2023/6/11 14:19 # @Author : 志在星空 # @File : jietu12.py # @Software: PyCharm import base64 import urllib import requests import json API_KEY = "jHxdMDf2bhEPxcG6zFoRUejo" SECRET_KEY = "QF5GO9eLQncG2Zr1MKrxLOWvKAkAtVfI" def main(): # 发送 OCR 请求并获取响应 url = "https://aip.baidubce.com/rest/2.0/ocr/v1/general?access_token=" + get_access_token() # payload = 'image=%2F9j%2F4AAQ' headers = { 'Content-Type': 'application/x-www-form-urlencoded', 'Accept': 'application/json' } image_path = "11.jpg" with open(image_path, "rb") as image_file: image_data = image_file.read() response = requests.post(url, headers=headers, data=image_data) # response = requests.request("POST", url, headers=headers, data=payload) # 解析响应并提取 words_result 中的所有 words 字段 result = json.loads(response.text) print(result) # words_list = [item['words'] for item in result['words_result']] # print(words_list) # # # 打印所有提取到的内容 # for words in words_list: # print(words) def get_file_content_as_base64(path, urlencoded=False): """ 获取文件base64编码 :param path: 文件路径 :param urlencoded: 是否对结果进行urlencoded :return: base64编码信息 """ with open(path, "rb") as f: content = base64.b64encode(f.read()).decode("utf8") if urlencoded: content = urllib.parse.quote_plus(content) return content def get_access_token(): """ 使用 AK,SK 生成鉴权签名(Access Token) :return: access_token,或是None(如果错误) """ url = "https://aip.baidubce.com/oauth/2.0/token" params = {"grant_type": "client_credentials", "client_id": API_KEY, "client_secret": SECRET_KEY} return str(requests.post(url, params=params).json().get("access_token")) if name == 'main': main()运行出现{'log_id': 1667825949995168966, 'error_msg': 'param image not exist', 'error_code': 216101},请修改一下
根据你提供的代码和运行结果,可能是以下两个问题导致的:
1. 请求头中的 Content-Type 不正确,应该设置为 multipart/form-data,而不是 application/x-www-form-urlencoded。
2. 请求体中的数据格式不正确,应该是 multipart/form-data 格式,而不是 application/x-www-form-urlencoded 格式。
为了解决这个问题,可以尝试以下修改:
1. 修改请求头中的 Content-Type,将其设置为 multipart/form-data:
```
headers = {
'Content-Type': 'multipart/form-data',
'Accept': 'application/json'
}
```
2. 修改请求体中的数据格式,将其设置为 multipart/form-data 格式。可以使用 Python 的 requests 库自动构建这种格式的请求体。修改后的代码如下:
```
import requests
import json
API_KEY = "jHxdMDf2bhEPxcG6zFoRUejo"
SECRET_KEY = "QF5GO9eLQncG2Zr1MKrxLOWvKAkAtVfI"
def main():
# 发送 OCR 请求并获取响应
url = "https://aip.baidubce.com/rest/2.0/ocr/v1/general?access_token=" + get_access_token()
image_path = "11.jpg"
with open(image_path, "rb") as image_file:
image_data = image_file.read()
response = requests.post(url, headers=headers, data={
'image': ('image.jpg', image_data)
})
result = json.loads(response.text)
print(result)
def get_access_token():
url = "https://aip.baidubce.com/oauth/2.0/token"
params = {"grant_type": "client_credentials", "client_id": API_KEY, "client_secret": SECRET_KEY}
return str(requests.post(url, params=params).json().get("access_token"))
if __name__ == '__main__':
headers = {
'Content-Type': 'multipart/form-data',
'Accept': 'application/json'
}
main()
```
这样就可以发送正确格式的 OCR 请求,并获取响应了。
阅读全文