We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4339fc commit 1a4974cCopy full SHA for 1a4974c
README.md
@@ -87,9 +87,8 @@ from wired_table_rec import WiredTableRecognition
87
88
lineless_engine = LinelessTableRecognition()
89
wired_engine = WiredTableRecognition()
90
-table_cls = TableCls()
91
-# 分类精度降低,但耗时减少 3/5(0.2s->0.08s)
92
-# table_cls = TableCls(mode="q")
+# 默认小yolo模型(0.1s),可切换为精度更高yolox(0.25s),更快的qanything(0.07s)模型
+table_cls = TableCls() # TableCls(mode="yolox"),TableCls(mode="q")
93
img_path = f'images/img14.jpg'
94
95
cls,elasp = table_cls(img_path)
0 commit comments