在通过pytesseract ocr模块之前,是否可以检查图像的方向

时间:2019-03-12 10:41:41

标签: image-processing ocr tesseract python-tesseract

对于我当前的ocr项目,我尝试使用tesserect使用python封面pytesseract将图像转换为文本文件。到现在为止,我只将面向直线的图像传递到我的模块中,因为它能够正确找出该图像中的文本。但是现在当我传递旋转的图像时,它甚至无法识别一个单词。因此,要获得良好的效果,我只需要以正确的方向传递图像。 现在,我想知道在将图像传递到ocr模块之前,是否有任何方法可以确定图像的方向。请让我知道我可以使用哪些方法进行方向检查。

这是我用来进行转换的方法:

def images_to_text(testImg):
    print('Reading images form the directory..........')
    dataFile=[]
    for filename in os.listdir(testImg):
        os.chdir(testImg)
        # Define config parameters.
        # '-l eng'  for using the English language 
        # '--oem 1' for using LSTM OCR Engine
        config = ('-l eng --oem 1 --psm 3')
        # Read image from disk
        im = cv2.imread(str(filename), cv2.IMREAD_COLOR)
        # Run tesseract OCR on image
        text = pytesseract.image_to_string(im, config=config)
        #basic preprocessing of the text
        text = text.replace('\t',' ')
        text= text.rstrip()
        text= text.lstrip()
        text = text.replace(' +',' ')
        text = text.replace('\n+','\n')
        text = text.replace('\n+ +',' ')

        #writing data to file
        os.chdir(imgTxt)
        rep=filename[-3:]
        name=filename.replace(rep,'txt')
        with open(name, 'w') as writeFile:
            writeFile.write("%s\n" % text)
        text = text.replace('\n',' ')
        dataFile.append(text)
    print('writing data to file done')    
    return dataFile

1 个答案:

答案 0 :(得分:0)

我找到了检查图像方向的解决方案。 pytesseract中已经有一种方法可以完成这项工作。

imPath='path_to_image'
im = cv2.imread(str(imPath), cv2.IMREAD_COLOR)
newdata=pytesseract.image_to_osd(im)
re.search('(?<=Rotate: )\d+', newdata).group(0)

pytesseract.image_to_osd(im)方法的输出为:

Page number: 0
Orientation in degrees: 270
Rotate: 90
Orientation confidence: 4.21
Script: Latin
Script confidence: 1.90

我们仅需要旋转值来更改方向,因此使用正则表达式将做更多的工作。

re.search('(?<=Rotate: )\d+', newdata).group(0)

这是旋转图像以使其变为0`方向的最终方法。

def rotate(image, center = None, scale = 1.0):
    angle=360-int(re.search('(?<=Rotate: )\d+', pytesseract.image_to_osd(image)).group(0))
    (h, w) = image.shape[:2]

    if center is None:
        center = (w / 2, h / 2)

    # Perform the rotation
    M = cv2.getRotationMatrix2D(center, angle, scale)
    rotated = cv2.warpAffine(image, M, (w, h))

    return rotated