我正在使用 Camelot 从 PDF 和图像中读取表格的项目。我们需要找到表格单元格的边界坐标。
Camelot 在这里展示了核心课程,我认为答案可能就在这里,但我没有看到。我看到需要坐标作为参数而不是输出的函数。
https://camelot-py.readthedocs.io/en/master/_modules/camelot/core.html
无论如何,我需要找到每个单元格的列表及其坐标。怎么做?
我正在使用 Camelot 从 PDF 和图像中读取表格的项目。我们需要找到表格单元格的边界坐标。
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。
您可以尝试它们并与它们一起玩。