import os os.environ["KMP_DUPLICATE_LIB_OK"] = "TRUE" from paddleocr import PaddleOCR, draw_ocr ocr = PaddleOCR(use_angle_cls=True, lang="ch") img_path = r'test.png' result = ocr.ocr(img_path, det=True, cls=True) for line in result: print(line) # 显示结果 from PIL import Image image = Image.open(img_path).convert('RGB') boxes = [line[0] for line in result] txts = [line[1][0] for line in result] scores = [line[1][1] for line in result] im_show = draw_ocr(image, boxes, txts, scores, font_path='/path/to/PaddleOCR/doc/fonts/simfang.ttf') im_show = Image.fromarray(im_show) im_show.save('结果.jpg')
时间: 2024-02-19 20:02:08 浏览: 307
the introduction of python os.zip_OND3_python os模块简介_youthot3
这段代码使用 PaddleOCR 库对一张图片进行 OCR(Optical Character Recognition,光学字符识别)操作,并将识别结果保存为图片。具体来说,代码首先导入所需的库,然后创建一个 PaddleOCR 对象,并指定要识别的图片路径和语言类型。接着使用 ocr.ocr() 方法对图片进行识别,并将识别结果存储在 result 变量中。最后,代码使用 PIL 库将原始图片和识别结果结合起来,并将结果保存为一张图片。
阅读全文