提取单元格四个顶点的坐标信息
#100
-
请问大佬 我想提取每个单元格的四个顶点的坐标信息,应该在变量polygons还是ocr_res中提取呢,我没看懂ocr_res的结果,一般ocr_res的格式不应该是[x1, y1, x2, y2, text]吗,为什么我打印了一下输出是这种:[[561.0, 35.0, 760.0, 61.0], [123.0, 42.0, 218.0, 70.0]..],没有包含test的文本信息啊 我想要把提取的四个顶点坐标放在一个长度为8的数组中 |
Beta Was this translation helpful? Give feedback.
Answered by
Joker1212
Dec 18, 2024
Replies: 1 comment 4 replies
-
polygons是表格的物理坐标,ocr_res是RapidOcr的结果 |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
坐标是xmin,ymin,xmax,ymax,从左到右,从上到下代表min-max的方向,你可以参考两个可视化方法的代码来理解返回值的结构
可视化表格识别框 + 逻辑行列信息
plot_rec_box_with_logic_info(img_path, f"{output_dir}/table_rec_box.jpg", logic_points, polygons)
可视化ocr结果
plot_rec_box(img_path, f"{output_dir}/ocr_box.jpg", ocr_res)