当前位置:   article > 正文

【python】版面分析ppstructure

ppstructure

版面分析ppstructure说明地址:版面分析ppstructure

注:版面分析ppstructure部分内容截图如下。仅作为学习使用,如有侵权,请联系作者删除!

在这里插入图片描述
在这里插入图片描述

1 安装

(1)安装PaddlePaddle

pip3 install --upgrade pip
  • 1
GPU安装
python3 -m pip install paddlepaddle-gpu==2.1.1 -i https://mirror.baidu.com/pypi/simple
  • 1
CPU安装
 python3 -m pip install paddlepaddle==2.1.1 -i https://mirror.baidu.com/pypi/simple
  • 1

(2)安装Layout-Parser

pip3 install -U https://paddleocr.bj.bcebos.com/whl/layoutparser-0.0.0-py3-none-any.whl
  • 1

在这里插入图片描述
(3)安装paddleocr
PIP快速安装PaddleOCR whl包(仅预测)

pip install "paddleocr>=2.2" 
  • 1

完整克隆PaddleOCR源码(预测+训练)

git clone https://github.com/PaddlePaddle/PaddleOCR
  • 1

2 PP-Structure

(1)命令行使用

paddleocr --image_dir=1.png --type=structure
  • 1

(2)Python脚本使用
原图:在这里插入图片描述

  • 代码
import os
import cv2
from paddleocr import PPStructure, draw_structure_result, save_structure_res
from PIL import Image


def Structure_analysis(img_path):
    table_engine = PPStructure(show_log=True)
    save_folder = './output/table'
    img = cv2.imread(img_path)
    result = table_engine(img)
    save_structure_res(result, save_folder,os.path.basename(img_path).split('.')[0])

    for line in result:
        line.pop('img')
        print(line)

    font_path = '../doc/fonts/simfang.ttf' # PaddleOCR下提供字体包
    image = Image.open(img_path).convert('RGB')
    im_show = draw_structure_result(image, result, font_path=font_path)
    im_show = Image.fromarray(im_show)
    im_show.save('result.jpg')
    pass


if __name__ == '__main__':
    Structure_analysis('1.png')
    pass
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28

效果:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/132541
推荐阅读
相关标签
  

闽ICP备14008679号