Pytesseract返回空字符串。如何识别复杂的图像?

时间:2019-07-05 09:53:48

标签: python ocr image-recognition python-tesseract

我必须识别一些要串起来的图像。但是pytesseract无法正常运行。有时返回空字符串或无法完全识别。我需要帮助吗,还有其他选择吗?

import pytesseract, cv2

config = ('-l eng --oem 1 --psm 3')
image = cv2.imread(r'17.jpg', cv2.IMREAD_COLOR)
text = pytesseract.image_to_string(image, config=config)
print(text)

图像如下:

example

0 个答案:

没有答案