繁体   English   中英

使用 OCR 从图像中读取文本,使用 python 读取具有两列或三列数据的图像

[英]Read text from image using OCR for the image which have two columns or three columns of data using python

在示例图像中(仅作为参考,我的图像将具有相同的模式)一个页面具有完整的水平文本,而其他页面具有两个水平的文本列。

在此处输入图片说明

python中如何自动检测文档的模式并逐列读取另一列数据?

我正在将 Tesseract OCR 与 Psm 6 一起使用,它在水平读取时是错误的。

实现这一点的一种方法是使用形态学操作和轮廓检测。

对于前者,您基本上将所有字符“渗入”成一个大块状的斑点。 对于后者,您可以在图像中找到这些斑点并提取那些看起来很有趣的斑点(意思是:足够大)。 提取的轮廓

使用的脚本:

import cv2
import sys

SCALE = 4
AREA_THRESHOLD = 427505.0 / 2

def show_scaled(name, img):
    try:
        h, w  = img.shape
    except ValueError:
        h, w, _  = img.shape
    cv2.imshow(name, cv2.resize(img, (w // SCALE, h // SCALE)))

def main():
    img = cv2.imread(sys.argv[1])
    img = img[10:-10, 10:-10] # remove the border, it confuses contour detection
    gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
    show_scaled("original", gray)

    # black and white, and inverted, because
    # white pixels are treated as objects in
    # contour detection
    thresholded = cv2.adaptiveThreshold(
                gray, 255,
                cv2.ADAPTIVE_THRESH_MEAN_C, cv2.THRESH_BINARY_INV,
                25,
                15
            )
    show_scaled('thresholded', thresholded)
    # I use a kernel that is wide enough to connect characters
    # but not text blocks, and tall enough to connect lines.
    kernel = cv2.getStructuringElement(cv2.MORPH_RECT, (13, 33))
    closing = cv2.morphologyEx(thresholded, cv2.MORPH_CLOSE, kernel)

    im2, contours, hierarchy = cv2.findContours(closing, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
    show_scaled("closing", closing)

    for contour in contours:
        convex_contour = cv2.convexHull(contour)
        area = cv2.contourArea(convex_contour)
        if area > AREA_THRESHOLD:
            cv2.drawContours(img, [convex_contour], -1, (255,0,0), 3)

    show_scaled("contours", img)
    cv2.imwrite("/tmp/contours.png", img)
    cv2.waitKey()

if __name__ == '__main__':
    main()

然后你所需要的就是计算轮廓的边界框,并从原始图像中切割出来。 添加一点边距并将整个内容提供给tesseract。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM