This commit is contained in:
2025-08-14 16:04:59 +08:00
commit d8bceb3fe1
73 changed files with 3644 additions and 0 deletions

16
test002.py Normal file
View File

@@ -0,0 +1,16 @@
from paddleocr import PPStructureV3
pipeline = PPStructureV3(
use_doc_orientation_classify=False,
# use_table_recognition=True,
use_doc_unwarping=False
)
# For Image
output = pipeline.predict(
input="./bm.jpg",
)
# 可视化结果并保存 json 结果
for res in output:
res.save_to_markdown(save_path="output")