pytesseract ocr使用config限制out字符的长度

时间:2018-03-22 20:31:46

标签: opencv config ocr whitelist

我正在使用opencv在python中构建一个应用程序,它从图像中提取字符并运行pytesseract转换为文本。

我知道字符长度总是2位数(范围10-99)。如何配置参数,以便不返回单个数字输出。

我的代码中有以下内容:

text = pytesseract.image_to_string(Image.open(filename),config='--psm 100 --eom 3 -c tessedit_char_whitelist=0123456789')

我应该放什么代替config='--psm 100 --eom 3 -c tessedit_char_whitelist=0123456789'以便它只返回2位数字(即01而不是5)

0 个答案:

没有答案