标签: python image python-tesseract
当我在Pytesseract中尝试image_to_string时,图像的同一行中包含文本,但是输出的不同行中具有相同的文本。
image_to_string
我需要在OCR之前进行任何图像处理吗?
答案 0 :(得分:0)
您必须使用额外的配置参数psm。将该值设置为6。
pytesseract.image_to_string(image, lang="eng", config="--psm 6")
希望这会有所帮助!