zoukankan      html  css  js  c++  java
  • pdfminer实现pdf布局分析 python (pdfminer realize layout analysis with PDF python)

    使用pdfminer实现pdf文件的布局分析 python

    参考资料:

    https://github.com/euske/pdfminer

    https://stackoverflow.com/questions/22898145/how-to-extract-text-and-text-coordinates-from-a-pdf-file?noredirect=1

    import cv2
    from pdfminer.pdfparser import PDFParser
    from pdfminer.pdfdocument import PDFDocument
    from pdfminer.pdfpage import PDFPage
    from pdfminer.pdfpage import PDFTextExtractionNotAllowed
    from pdfminer.pdfinterp import PDFResourceManager
    from pdfminer.pdfinterp import PDFPageInterpreter
    from pdfminer.pdfdevice import PDFDevice
    from pdfminer.layout import LAParams
    from pdfminer.converter import PDFPageAggregator
    import pdfminer
    import numpy as np
    import matplotlib.pyplot as plt
    from pdf2image import convert_from_path
    
    image_path = 'literature.pdf'
    
    layout_type = ['LTTextBox', 'LTFigure', 'LTImage', 'LTCurve', 'LTRect']
    # Text:红色, Figure:绿色, Image:蓝色, Curve:黄色, Rect:紫色
    color = [(255, 0, 0), (0, 255, 0), (0, 0, 255), (255, 255, 0), (160, 32, 240)]
    
    draw_color = dict(zip(layout_type, color))
    
    
    def parse_obj(lt_objs):
    
        boxs = {x: [] for x in layout_type}
        # loop over the object list
        for obj in lt_objs:
    
            if isinstance(obj, pdfminer.layout.LTTextBoxHorizontal):
                boxs['LTTextBox'].append(obj.bbox)
            elif isinstance(obj, pdfminer.layout.LTFigure):
                boxs['LTFigure'].append(obj.bbox)
            elif isinstance(obj, pdfminer.layout.LTImage):
                boxs['LTImage'].append(obj.bbox)
            elif isinstance(obj, pdfminer.layout.LTCurve):
                boxs['LTCurve'].append(obj.bbox)
            elif isinstance(obj, pdfminer.layout.LTRect):
                boxs['LTRect'].append(obj.bbox)
            else:
                raise
        return boxs
    
    
    # Open a PDF file.
    fp = open(image_path, 'rb')
    # Create a PDF parser object associated with the file object.
    parser = PDFParser(fp)
    # Create a PDF document object that stores the document structure.
    # Supply the password for initialization.
    password = '123'
    document = PDFDocument(parser, password)
    # Check if the document allows text extraction. If not, abort.
    if not document.is_extractable:
        raise PDFTextExtractionNotAllowed
    # Create a PDF resource manager object that stores shared resources.
    rsrcmgr = PDFResourceManager()
    
    # Set parameters for analysis.
    laparams = LAParams()
    # Create a PDF page aggregator object.
    device = PDFPageAggregator(rsrcmgr, laparams=laparams)
    interpreter = PDFPageInterpreter(rsrcmgr, device)
    
    page_boxs = []
    for page in PDFPage.create_pages(document):
        interpreter.process_page(page)
        # receive the LTPage object for the page.
        layout = device.get_result()
        # extract text from this object
        boxs = parse_obj(layout._objs)
        page_sized = tuple([round(i) for i in layout.bbox])
        page_boxs.append((page_sized, boxs))
        pass
    
    image = convert_from_path(image_path)
    
    assert len(image) == len(page_boxs), "The number of boxes doesn't match the number of pictures"
    for i in range(len(image)):
        # 得到这一页图片
        image_pil = image[i]
        # 把这一页的图片格式转成numpy类型
        image_numpy = np.array(image_pil)
        # 得到这一页图片德国高度,为了之后得到实际的box
        page_boxs_height = page_boxs[i][0][3]
        print(page_boxs[i][1])
    
        # 遍历这一页的框
        for key, values in page_boxs[i][1].items():
            # 把实际的图片大小resize到页面的大小
            image_numpy = cv2.resize(image_numpy, page_boxs[i][0][2:4], interpolation=cv2.INTER_AREA)
            for value in values:
                # The y-coordinates are given as the distance from the bottom of the page.
                real_box = (value[0], page_boxs_height-value[3], value[2], page_boxs_height-value[1])
                real_box_integer = tuple([round(jj) for jj in real_box])
                # 画图
                cv2.rectangle(image_numpy, real_box_integer[:2], real_box_integer[2:], draw_color[key], 2)
        plt.figure(), plt.imshow(image_numpy)
        plt.show()
    

    结果如下:

    此代码只涉及到PDF文件的布局分析,没有涉及到PDF转成可编辑文档。供大家参考,有问题希望大家多多指正

  • 相关阅读:
    把图片转换成二进制--把二进制转换成图片
    .NET 读取视频文件
    winform ListView创建columnHeader的方法
    VUE篇 3、this指向问题、双向数据绑定 、局部/全局组件、父子传值 、兄弟传值(平行组件传值)
    爬虫 5 scrapy框架 虎牙scrapy示例
    爬虫 空气质量爬取分析
    爬虫 4 selenium
    爬虫3 request3高级 代理操作、模拟登录、单线程+多任务异步协程
    爬虫2 数据解析 --图片 、bs4 、xpath 、l乱码的一个解决方法 “|”
    vue篇 2、简单的轮播图 ajax、简单的音乐播放器、计算属性computed
  • 原文地址:https://www.cnblogs.com/ttweixiao-IT-program/p/12029380.html
Copyright © 2011-2022 走看看