图表转表格接口如何使用 #15984
Unanswered
starbilibili
asked this question in
Q&A
图表转表格接口如何使用
#15984
Replies: 1 comment 1 reply
-
您好,可以把 use_chart_recognition=True 传入到 predict 方法中试试, 具体代码如下: def chart2table():
pipline = PPStructureV3(chart_recognition_model_name="PP-Chart2Table", device="gpu")
output = pipline.predict("./png/two_col_82370.png", use_chart_recognition=True)
pdb.set_trace()
for res in output:
res.save_to_img(save_path="./paddleocr_results")
print(output) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
调用PP-Chart2Table接口得到的结果并没有解析后的表格,请问是有什么参数设置存在问题吗?

输入只是非常简单的图表,也成功识别到了chart区域。
Beta Was this translation helpful? Give feedback.
All reactions