Instructions to use PaddlePaddle/PP-DocLayoutV3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PaddleOCR
How to use PaddlePaddle/PP-DocLayoutV3 with PaddleOCR:
# 1. See https://www.paddlepaddle.org.cn/en/install to install paddlepaddle # 2. pip install paddleocr from paddleocr import LayoutDetection model = LayoutDetection(model_name="PP-DocLayoutV3") output = model.predict(input="path/to/image.png", batch_size=1) for res in output: res.print() res.save_to_img(save_path="./output/") res.save_to_json(save_path="./output/res.json") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -20,7 +20,7 @@ library_name: PaddleOCR
|
|
| 20 |
|
| 21 |
<h1 align="center">
|
| 22 |
|
| 23 |
-
Layout Analysis Module of PaddleOCR-VL-1.5
|
| 24 |
|
| 25 |
</h1>
|
| 26 |
|
|
@@ -34,7 +34,7 @@ Layout Analysis Module of PaddleOCR-VL-1.5
|
|
| 34 |
[](./LICENSE)
|
| 35 |
|
| 36 |
**🔥 [Official Website](https://www.paddleocr.com)** |
|
| 37 |
-
**📝 [Technical Report](https://arxiv.org/abs/
|
| 38 |
|
| 39 |
</div>
|
| 40 |
|
|
@@ -95,13 +95,13 @@ This work has been accepted to ECCV 2026! 🎉
|
|
| 95 |
If you find PP-DocLayoutV3 helpful, feel free to give us a star and citation.
|
| 96 |
|
| 97 |
```bibtex
|
| 98 |
-
@misc{
|
| 99 |
-
title={
|
| 100 |
-
author={Cheng Cui and
|
| 101 |
year={2026},
|
| 102 |
-
eprint={
|
| 103 |
archivePrefix={arXiv},
|
| 104 |
primaryClass={cs.CV},
|
| 105 |
-
url={https://arxiv.org/abs/
|
| 106 |
}
|
| 107 |
```
|
|
|
|
| 20 |
|
| 21 |
<h1 align="center">
|
| 22 |
|
| 23 |
+
Layout Analysis Module of PaddleOCR-VL-1.5 and PaddleOCR-VL-1.6.
|
| 24 |
|
| 25 |
</h1>
|
| 26 |
|
|
|
|
| 34 |
[](./LICENSE)
|
| 35 |
|
| 36 |
**🔥 [Official Website](https://www.paddleocr.com)** |
|
| 37 |
+
**📝 [Technical Report](https://arxiv.org/abs/2606.23344)**
|
| 38 |
|
| 39 |
</div>
|
| 40 |
|
|
|
|
| 95 |
If you find PP-DocLayoutV3 helpful, feel free to give us a star and citation.
|
| 96 |
|
| 97 |
```bibtex
|
| 98 |
+
@misc{cui2026rtdoclayoutrealtimeendtoenddocument,
|
| 99 |
+
title={RT-DocLayout: Real-Time End-to-End Document Layout Analysis with Reading Order in the Wild},
|
| 100 |
+
author={Cheng Cui and Tingquan Gao and Xueqing Wang and Changda Zhou and Hongen Liu and Ting Sun and Yubo Zhang and Zelun Zhang and Jiaxuan Liu and Manhui Lin and Yue Zhang and Suyin Liang and Yiqing Xiang and Yi Liu},
|
| 101 |
year={2026},
|
| 102 |
+
eprint={2606.23344},
|
| 103 |
archivePrefix={arXiv},
|
| 104 |
primaryClass={cs.CV},
|
| 105 |
+
url={https://arxiv.org/abs/2606.23344},
|
| 106 |
}
|
| 107 |
```
|