Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleOCR
提交
67e8dd1b
P
PaddleOCR
项目概览
PaddlePaddle
/
PaddleOCR
大约 1 年 前同步成功
通知
1528
Star
32962
Fork
6643
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
108
列表
看板
标记
里程碑
合并请求
7
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleOCR
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
108
Issue
108
列表
看板
标记
里程碑
合并请求
7
合并请求
7
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
67e8dd1b
编写于
5月 09, 2022
作者:
A
an1018
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
modify recovery
上级
7e5e95d6
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
102 addition
and
6 deletion
+102
-6
ppstructure/recovery/README.md
ppstructure/recovery/README.md
+49
-3
ppstructure/recovery/README_ch.md
ppstructure/recovery/README_ch.md
+50
-3
ppstructure/recovery/requirements.txt
ppstructure/recovery/requirements.txt
+3
-0
未找到文件。
ppstructure/recovery/README.md
浏览文件 @
67e8dd1b
...
...
@@ -2,7 +2,10 @@ English | [简体中文](README_ch.md)
-
[
Getting Started
](
#getting-started
)
-
[
1. Introduction
](
#1
)
-
[
2. Quick Start
](
#2
)
-
[
2. Install
](
#2
)
-
[
2.1 Installation dependencies
](
#2.1
)
-
[
2.2 Install PaddleOCR
](
#2.2
)
-
[
3. Quick Start
](
#3
)
<a
name=
"1"
></a>
...
...
@@ -16,10 +19,53 @@ The following figure shows the result:
<div
align=
"center"
>
<img
src=
"../docs/table/recovery.jpg"
width =
"700"
/>
</div>
<a
name=
"2"
></a>
## 2. Quick Start
## 2. Install
<a
name=
"2.1"
></a>
### 2.1 Install dependencies
-
**(1) Install PaddlePaddle**
```
bash
python3
-m
pip
install
--upgrade
pip
# GPU installation
python3
-m
pip
install
"paddlepaddle-gpu>=2.2"
-i
https://mirror.baidu.com/pypi/simple
# CPU installation
python3
-m
pip
install
"paddlepaddle>=2.2"
-i
https://mirror.baidu.com/pypi/simple
```
`
For more requirements, please refer to the instructions in [Installation Documentation](https://www.paddlepaddle.org.cn/install/quick).
<a name="2.2"></a>
### 2.2 Install PaddleOCR
- **(1) Download source code**
```bash
[Recommended] git clone https://github.com/PaddlePaddle/PaddleOCR
# If the pull cannot be successful due to network problems, you can also choose to use the hosting on the code cloud:
git clone https://gitee.com/paddlepaddle/PaddleOCR
# Note: Code cloud hosting code may not be able to synchronize the update of this github project in real time, there is a delay of 3 to 5 days, please use the recommended method first.
````
- **(2) Install recovery's `requirements`**
```bash
python3 -m pip install -r ppstructure/recovery/requirements.txt
````
<a name="3"></a>
## 3. Quick Start
```
python
cd PaddleOCR/ppstructure
...
...
ppstructure/recovery/README_ch.md
浏览文件 @
67e8dd1b
...
...
@@ -3,7 +3,11 @@
# 版面恢复使用说明
-
[
1. 简介
](
#1
)
-
[
2. 使用
](
#2
)
-
[
2. 安装
](
#2
)
-
[
2.1 安装依赖
](
#2.1
)
-
[
2.2 安装PaddleOCR
](
#2.2
)
-
[
3. 使用
](
#3
)
<a
name=
"1"
></a>
...
...
@@ -17,10 +21,53 @@
<div
align=
"center"
>
<img
src=
"../docs/table/recovery.jpg"
width =
"700"
/>
</div>
<a
name=
"2"
></a>
## 2. 使用
## 2. 安装
<a
name=
"2.1"
></a>
### 2.1 安装依赖
-
**(1) 安装PaddlePaddle**
```
bash
python3
-m
pip
install
--upgrade
pip
# GPU安装
python3
-m
pip
install
"paddlepaddle-gpu>=2.2"
-i
https://mirror.baidu.com/pypi/simple
# CPU安装
python3
-m
pip
install
"paddlepaddle>=2.2"
-i
https://mirror.baidu.com/pypi/simple
```
更多需求,请参照
[
安装文档
](
https://www.paddlepaddle.org.cn/install/quick
)
中的说明进行操作。
<a
name=
"2.2"
></a>
### 2.2 安装PaddleOCR
-
**(1)下载版面恢复源码**
```
bash
【推荐】git clone https://github.com/PaddlePaddle/PaddleOCR
# 如果因为网络问题无法pull成功,也可选择使用码云上的托管:
git clone https://gitee.com/paddlepaddle/PaddleOCR
# 注:码云托管代码可能无法实时同步本github项目更新,存在3~5天延时,请优先使用推荐方式。
```
-
**(2)安装recovery的`requirements`**
```
bash
python3
-m
pip
install
-r
ppstructure/recovery/requirements.txt
```
<a
name=
"3"
></a>
## 3. 使用
恢复给定文档的版面:
...
...
ppstructure/recovery/requirements.txt
0 → 100644
浏览文件 @
67e8dd1b
opencv-contrib-python==4.4.0.46
pypandoc
python-docx
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录