我必须识别一些要串起来的图像。但是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)
图像如下: