我有一个png,其中包含一长串从1到300的数字(当然不是按顺序排列)。我正在使用以下代码:-
try:
import Image
except ImportError:
from PIL import Image
import pytesseract
text = pytesseract.image_to_string(Image.open('udit2.png'))
print(type(text))
new_list = text.split()
with open("new_list_3.txt", "w") as g:
for item in new_list:
g.write(item + "\n")
我在网上搜索并发现更改了psm,但是将psm更改为10只能得到一位数字。我想要所有的数字,包括2位数字和3位数字。有什么解决办法