scipy 如何在图像中提取表格

qyzbxkaa  于 2023-06-23  发布在  其他
关注(0)|答案(1)|浏览(120)

我想从图像中提取表格。这个Python模块https://pypi.org/project/ExtractTable/与他们的网站https://www.extracttable.com/pro.html做得非常好,但他们有有限的免费试用。我尝试了很多方法,但结果都不令人满意。这个网站/Python模块是如何生成100%准确的表格的?解决方案应适用于此驱动器链接https://drive.google.com/drive/folders/1v3UDuR7dUFVMR1im7VHTXKqkxTIV9px9?usp=sharing上的这3个可用映像
这是我尝试过的,效果很差。帮我提取像那个模块那样的表。

import cv2 as cv
import numpy as np
import pytesseract
from pytesseract import Output
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (120,16)

ebl='data/manu.png'
ROI_number=0
image = cv.imread(ebl)
original=image
gray = cv.cvtColor(image, cv.COLOR_BGR2GRAY)
custom_config = r'--oem 3 --psm 6'
details = pytesseract.image_to_data(gray, output_type=Output.DICT, config=custom_config, lang='eng')

total_boxes = len(details['text'])
for sequence_number in range(total_boxes):
    if int(details['conf'][sequence_number]) >30:
        (x, y, w, h) = (details['left'][sequence_number], details['top'][sequence_number], details['width'][sequence_number],  details['height'][sequence_number])
        threshold_img = cv.rectangle(original, (x, y), (x + w, y + h), (0, 255, 0), 2)

        
plotting = plt.imshow(threshold_img)
plt.show()
xxls0lw8

xxls0lw81#

这是一个活跃的研究领域,因此,不会有一个完美的解决方案。如果你正在寻找一个更前沿的选项,Papers with Code lists the results of several Table Recognition papers,其中一些有免费的模型可以使用,比如TableMaster(在Github上实现了PaddleOCR)。
祝你好运!

相关问题