python获取中文字体点阵坐标_使用Python(点阵OCR)从图像中提取文本时获取不正确的文本...

此篇博客讲述了如何使用Python和OpenCV从图像中提取文本时遇到的问题,着重于修复噪声处理和文本识别步骤,以提高识别准确率并减少特殊字符输出。作者将分享关键代码调整和使用Tesseract进行优化的方法。
摘要由CSDN通过智能技术生成

我试图通过python使用OpenCV从图像中提取文本,但是得到的结果不正确,而且大部分是特殊字符,请纠正这里的错误import cv2

import numpy as np

import pytesseract

from PIL import Image

import os

def get_string(img_path):

# Read image with opencv

img = cv2.imread(img_path)

# Convert to gray

img = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)

# Apply dilation and erosion to remove some noise

kernel = np.ones((1, 1), np.uint8)

img = cv2.dilate(img, kernel, iterations=1)

img = cv2.erode(img, kernel, iterations=1)

# Write image after removed noise

cv2.imwrite(src_path + "removed_noise.png", img)

# Write the image after apply opencv to do some ...

cv2.imwrite(src_path + "thres.png", img)

# Recognize text with tesseract for python

result = pytesseract.image_to_string(Image.open(src_path + "thres.png"))

return result

print('--- Start recognize text from image ---')

print(get_string("image_full_path.png"))

试着用谷歌搜索,但都没用。有人能指出正确的代码吗

输出:

^{pr2}$

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值