from ecloud import CMSSEcloudOcrClient import json accesskey = '357c19f09220408cb3650e8ca8a418c7' secretkey = 'f5f4f10272284ec3829460e0a65f5cd2' url = 'https://api-wuxi-1.cmecloud.cn:8443' def request_webimage(): requesturl = '/api/ocr/v1/webimage' imagepath = 'C:\\Users\\Administrator\\Desktop\\PythonSDK\\PythonSDK\\Python_SDK\\test_code\\sfz.jpg' try: ocr_client = CMSSEcloudOcrClient(accesskey, secretkey, url) response = ocr_client.request_ocr_service_file(requestpath=requesturl, imagepath= imagepath) print(response.text) except ValueError as e: print(e) if __name__ == "__main__": request_webimage()帮我在这个代码上改一下处理文件夹里的图片
时间: 2023-06-26 19:07:02 浏览: 89
好的,你可以使用 os 模块来遍历文件夹中的图片文件,然后对每个图片文件进行 OCR 识别。修改后的代码如下:
```python
from ecloud import CMSSEcloudOcrClient
import json
import os
accesskey = '357c19f09220408cb3650e8ca8a418c7'
secretkey = 'f5f4f10272284ec3829460e0a65f5cd2'
url = 'https://api-wuxi-1.cmecloud.cn:8443'
def request_webimage(imagepath):
requesturl = '/api/ocr/v1/webimage'
try:
ocr_client = CMSSEcloudOcrClient(accesskey, secretkey, url)
response = ocr_client.request_ocr_service_file(requestpath=requesturl, imagepath=imagepath)
print(response.text)
except ValueError as e:
print(e)
if __name__ == "__main__":
folder_path = "/path/to/folder" # 修改为实际的文件夹路径
for filename in os.listdir(folder_path):
if filename.endswith(".jpg") or filename.endswith(".jpeg") or filename.endswith(".png"):
imagepath = os.path.join(folder_path, filename)
request_webimage(imagepath)
```
注意,这里的 `folder_path` 变量需要修改为实际的文件夹路径。另外,我们使用 `os.listdir` 函数来遍历文件夹中的所有文件,然后使用 `os.path.join` 函数来构造图片文件的完整路径。最后,我们对每个图片文件调用 `request_webimage` 函数进行 OCR 识别。
阅读全文