Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
weixin_41840029
PaddleOCR
提交
0a653784
P
PaddleOCR
项目概览
weixin_41840029
/
PaddleOCR
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleOCR
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleOCR
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
0a653784
编写于
9月 21, 2020
作者:
M
MissPenguin
提交者:
GitHub
9月 21, 2020
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #774 from WenmuZhou/fix_whl_doc1
Fix whl doc1
上级
d8ac92cd
a38de9bd
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
8 addition
and
8 deletion
+8
-8
doc/doc_ch/whl.md
doc/doc_ch/whl.md
+4
-4
doc/doc_en/whl_en.md
doc/doc_en/whl_en.md
+4
-4
未找到文件。
doc/doc_ch/whl.md
浏览文件 @
0a653784
...
...
@@ -11,8 +11,8 @@ pip install paddleocr
本地构建并安装
```
bash
python setup.py bdist_wheel
pip
install
dist/paddleocr-x.x.x-py3-none-any.whl
# x.x.x是paddleocr的版本号
python
3
setup.py bdist_wheel
pip
3
install
dist/paddleocr-x.x.x-py3-none-any.whl
# x.x.x是paddleocr的版本号
```
### 1. 代码使用
...
...
@@ -20,7 +20,7 @@ pip install dist/paddleocr-x.x.x-py3-none-any.whl # x.x.x是paddleocr的版本
```
python
from
paddleocr
import
PaddleOCR
,
draw_ocr
# Paddleocr目前支持中英文、英文、法语、德语、韩语、日语,可以通过修改lang参数进行切换
# 参数依次为`
z
h`, `en`, `french`, `german`, `korean`, `japan`。
# 参数依次为`
c
h`, `en`, `french`, `german`, `korean`, `japan`。
ocr
=
PaddleOCR
(
use_angle_cls
=
True
,
lang
=
"ch"
)
# need to run only once to download and load model into memory
img_path
=
'PaddleOCR/doc/imgs/11.jpg'
result
=
ocr
.
ocr
(
img_path
,
cls
=
True
)
...
...
@@ -280,7 +280,7 @@ paddleocr --image_dir PaddleOCR/doc/imgs/11.jpg --det_model_dir {your_det_model_
| rec_algorithm | 使用的识别算法类型 | CRNN |
| rec_model_dir | 识别模型所在文件夹。传参方式有两种,1. None: 自动下载内置模型到
`~/.paddleocr/rec`
;2.自己转换好的inference模型路径,模型路径下必须包含model和params文件 | None |
| rec_image_shape | 识别算法的输入图片尺寸 | "3,32,320" |
| rec_char_type | 识别算法的字符类型,中
文(ch)或英文(e
n) | ch |
| rec_char_type | 识别算法的字符类型,中
英文(ch)、英文(en)、法语(french)、德语(german)、韩语(korean)、日语(japa
n) | ch |
| rec_batch_num | 进行识别时,同时前向的图片数 | 30 |
| max_text_length | 识别算法能识别的最大文字长度 | 25 |
| rec_char_dict_path | 识别模型字典路径,当rec_model_dir使用方式2传参时需要修改为自己的字典路径 | ./ppocr/utils/ppocr_keys_v1.txt |
...
...
doc/doc_en/whl_en.md
浏览文件 @
0a653784
...
...
@@ -9,8 +9,8 @@ pip install paddleocr
build own whl package and install
```
bash
python setup.py bdist_wheel
pip
install
dist/paddleocr-x.x.x-py3-none-any.whl
# x.x.x is the version of paddleocr
python
3
setup.py bdist_wheel
pip
3
install
dist/paddleocr-x.x.x-py3-none-any.whl
# x.x.x is the version of paddleocr
```
### 1. Use by code
...
...
@@ -18,7 +18,7 @@ pip install dist/paddleocr-x.x.x-py3-none-any.whl # x.x.x is the version of padd
```
python
from
paddleocr
import
PaddleOCR
,
draw_ocr
# Paddleocr supports Chinese, English, French, German, Korean and Japanese.
# You can set the parameter `lang` as `
z
h`, `en`, `french`, `german`, `korean`, `japan`
# You can set the parameter `lang` as `
c
h`, `en`, `french`, `german`, `korean`, `japan`
# to switch the language model in order.
ocr
=
PaddleOCR
(
use_angle_cls
=
True
,
lang
=
'en'
)
# need to run only once to download and load model into memory
img_path
=
'PaddleOCR/doc/imgs_en/img_12.jpg'
...
...
@@ -302,7 +302,7 @@ paddleocr --image_dir PaddleOCR/doc/imgs/11.jpg --det_model_dir {your_det_model_
| cls_batch_num | When performing classification, the batchsize of forward images | 30 |
| enable_mkldnn | Whether to enable mkldnn | FALSE |
| use_zero_copy_run | Whether to forward by zero_copy_run | FALSE |
| lang | The support language, now only
chinese(ch) and english(e
n) are supported | ch |
| lang | The support language, now only
Chinese(ch)、English(en)、French(french)、German(german)、Korean(korean)、Japanese(japa
n) are supported | ch |
| det | Enable detction when
`ppocr.ocr`
func exec | TRUE |
| rec | Enable recognition when
`ppocr.ocr`
func exec | TRUE |
| cls | Enable classification when
`ppocr.ocr`
func exec | FALSE |
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录