当它只是一个字母时,Pytesseract 无法识别
Pytesseract does not recognize when it's just a letter
我只需要认识一个字母
但是OCR无法识别只是一个字母!
在这种情况下,我试图识别字母 H,但没有显示任何内容!!
我要怎么做才能让他认出来?
from PIL import Image
from pytesseract import *
import cv2
img = cv2.imread('H.png',0)
edges = cv2.Canny(img,100,200)
img_new = Image.fromarray(edges)
text = pytesseract.image_to_string(img_new, lang='eng')
print (text)
尝试以下操作:
text = pytesseract.image_to_string(img_new, lang='eng', config='--psm 10')
我只需要认识一个字母
但是OCR无法识别只是一个字母!
在这种情况下,我试图识别字母 H,但没有显示任何内容!! 我要怎么做才能让他认出来?
from PIL import Image
from pytesseract import *
import cv2
img = cv2.imread('H.png',0)
edges = cv2.Canny(img,100,200)
img_new = Image.fromarray(edges)
text = pytesseract.image_to_string(img_new, lang='eng')
print (text)
尝试以下操作:
text = pytesseract.image_to_string(img_new, lang='eng', config='--psm 10')