如何使用Python从两列pdf中提取文本?

时间:2019-03-11 10:43:54

标签: python nlp

我有: enter image description here

我有一个两栏格式的PDF,是否有一种方法可以按照两栏格式读取每个PDF而不单独裁剪每个PDF?

1 个答案:

答案 0 :(得分:0)

这是我用于常规pdf解析的代码,在该图像上似乎可以正常工作(我下载了图像,因此使用光学字符识别,因此与常规OCR一样准确)。请注意,这会标记文本。另请注意,您需要安装tesseract才能正常工作(pytesseract只是使python可以运行tesseract)。 Tesseract是免费和开源的。

from PIL import Image
import pytesseract
import cv2
import os

def parse(image_path, threshold=False, blur=False):
    image = cv2.imread(image_path)
    gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
    if threshold:
        gray = cv2.threshold(gray, 0, 255, \
            cv2.THRESH_BINARY | cv2.THRESH_OTSU)[1]
    if blur: #useful if salt-and-pepper background.
        gray = cv2.medianBlur(gray, 3)
    filename = "{}.png".format(os.getpid())
    cv2.imwrite(filename, gray) #Create a temp file
    text = pytesseract.image_to_string(Image.open(filename))
    os.remove(filename) #Remove the temp file
    text = text.split() #PROCESS HERE.
    print(text)
a = parse(image_path, True, False)