如何从 Camelot 获取 table 个对象(单元格)的列表
how to get list of table objects (cells) from Camelot
我正在开展一个项目,使用 Camelot 从 PDF 和图像中读取 tables。我们需要找到 table 个单元格的边界坐标。
Camelot 在这里展示核心 类,我认为答案可能就在这里,但我没有看到。我看到需要坐标作为参数但不作为输出的函数。
https://camelot-py.readthedocs.io/en/master/_modules/camelot/core.html
无论如何,我需要找到每个单元格的列表及其坐标。怎么做?
您对table.cells
感兴趣
用法示例:
import camelot
tables=camelot.read_pdf('YOUR-PDF-FILEPATH',pages='all')
print(tables[0].cells)
输出:
[[<Cell x1=218.65 y1=698.47 x2=267.14 y2=722.23>,
<Cell x1=267.14 y1=698.47 x2=296.18 y2=722.23>,
<Cell x1=296.18 y1=698.47 x2=324.98 y2=722.23>,
<Cell x1=324.98 y1=698.47 x2=353.78 y2=722.23>,
<Cell x1=353.78 y1=698.47 x2=382.83 y2=722.23>,
<Cell x1=382.83 y1=698.47 x2=411.63 y2=722.23>,
<Cell x1=411.63 y1=698.47 x2=440.43 y2=722.23>,
<Cell x1=440.43 y1=698.47 x2=469.23 y2=722.23>,
<Cell x1=469.23 y1=698.47 x2=500.91 y2=722.23>,
<Cell x1=500.91 y1=698.47 x2=529.96 y2=722.23>],...]
单元格属性列表(通过dir(tables[0].cells[0][0])
获得):
bottom, bound, hspan, lb, left, lt, rb, right, rt, text, top, vspan, x1, x2, y1, y2.
你可以试试看,一起玩。
我正在开展一个项目,使用 Camelot 从 PDF 和图像中读取 tables。我们需要找到 table 个单元格的边界坐标。
Camelot 在这里展示核心 类,我认为答案可能就在这里,但我没有看到。我看到需要坐标作为参数但不作为输出的函数。
https://camelot-py.readthedocs.io/en/master/_modules/camelot/core.html
无论如何,我需要找到每个单元格的列表及其坐标。怎么做?
您对table.cells
用法示例:
import camelot
tables=camelot.read_pdf('YOUR-PDF-FILEPATH',pages='all')
print(tables[0].cells)
输出:
[[<Cell x1=218.65 y1=698.47 x2=267.14 y2=722.23>,
<Cell x1=267.14 y1=698.47 x2=296.18 y2=722.23>,
<Cell x1=296.18 y1=698.47 x2=324.98 y2=722.23>,
<Cell x1=324.98 y1=698.47 x2=353.78 y2=722.23>,
<Cell x1=353.78 y1=698.47 x2=382.83 y2=722.23>,
<Cell x1=382.83 y1=698.47 x2=411.63 y2=722.23>,
<Cell x1=411.63 y1=698.47 x2=440.43 y2=722.23>,
<Cell x1=440.43 y1=698.47 x2=469.23 y2=722.23>,
<Cell x1=469.23 y1=698.47 x2=500.91 y2=722.23>,
<Cell x1=500.91 y1=698.47 x2=529.96 y2=722.23>],...]
单元格属性列表(通过dir(tables[0].cells[0][0])
获得):
bottom, bound, hspan, lb, left, lt, rb, right, rt, text, top, vspan, x1, x2, y1, y2.
你可以试试看,一起玩。