update whl doc (#1289)
This commit is contained in:
parent
cf4a41542b
commit
7ed238f786
|
@ -4,6 +4,8 @@
|
||||||
|
|
||||||
### 安装whl包
|
### 安装whl包
|
||||||
|
|
||||||
|
首先需要参照[安装文档](installation.md)安装paddlepaddle,然后开始安装paddleocr package
|
||||||
|
|
||||||
pip安装
|
pip安装
|
||||||
```bash
|
```bash
|
||||||
pip install paddleocr
|
pip install paddleocr
|
||||||
|
@ -166,7 +168,7 @@ paddleocr -h
|
||||||
|
|
||||||
* 检测+分类+识别全流程
|
* 检测+分类+识别全流程
|
||||||
```bash
|
```bash
|
||||||
paddleocr --image_dir PaddleOCR/doc/imgs/11.jpg --use_angle_cls true --cls true
|
paddleocr --image_dir PaddleOCR/doc/imgs/11.jpg --use_angle_cls true
|
||||||
```
|
```
|
||||||
结果是一个list,每个item包含了文本框,文字和识别置信度
|
结果是一个list,每个item包含了文本框,文字和识别置信度
|
||||||
```bash
|
```bash
|
||||||
|
@ -190,7 +192,7 @@ paddleocr --image_dir PaddleOCR/doc/imgs/11.jpg
|
||||||
|
|
||||||
* 分类+识别
|
* 分类+识别
|
||||||
```bash
|
```bash
|
||||||
paddleocr --image_dir PaddleOCR/doc/imgs_words/ch/word_1.jpg --use_angle_cls true --cls true --det false
|
paddleocr --image_dir PaddleOCR/doc/imgs_words/ch/word_1.jpg --use_angle_cls true --det false
|
||||||
```
|
```
|
||||||
|
|
||||||
结果是一个list,每个item只包含识别结果和识别置信度
|
结果是一个list,每个item只包含识别结果和识别置信度
|
||||||
|
@ -222,7 +224,7 @@ paddleocr --image_dir PaddleOCR/doc/imgs_words/ch/word_1.jpg --det false
|
||||||
|
|
||||||
* 单独执行分类
|
* 单独执行分类
|
||||||
```bash
|
```bash
|
||||||
paddleocr --image_dir PaddleOCR/doc/imgs_words/ch/word_1.jpg --use_angle_cls true --cls true --det false --rec false
|
paddleocr --image_dir PaddleOCR/doc/imgs_words/ch/word_1.jpg --use_angle_cls true --det false --rec false
|
||||||
```
|
```
|
||||||
|
|
||||||
结果是一个list,每个item只包含分类结果和分类置信度
|
结果是一个list,每个item只包含分类结果和分类置信度
|
||||||
|
@ -258,7 +260,7 @@ im_show.save('result.jpg')
|
||||||
### 通过命令行使用
|
### 通过命令行使用
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
paddleocr --image_dir PaddleOCR/doc/imgs/11.jpg --det_model_dir {your_det_model_dir} --rec_model_dir {your_rec_model_dir} --rec_char_dict_path {your_rec_char_dict_path} --cls_model_dir {your_cls_model_dir} --use_angle_cls true --cls true
|
paddleocr --image_dir PaddleOCR/doc/imgs/11.jpg --det_model_dir {your_det_model_dir} --rec_model_dir {your_rec_model_dir} --rec_char_dict_path {your_rec_char_dict_path} --cls_model_dir {your_cls_model_dir} --use_angle_cls true
|
||||||
```
|
```
|
||||||
|
|
||||||
## 参数说明
|
## 参数说明
|
||||||
|
@ -295,4 +297,4 @@ paddleocr --image_dir PaddleOCR/doc/imgs/11.jpg --det_model_dir {your_det_model_
|
||||||
| lang | 模型语言类型,目前支持 中文(ch)和英文(en) | ch |
|
| lang | 模型语言类型,目前支持 中文(ch)和英文(en) | ch |
|
||||||
| det | 前向时使用启动检测 | TRUE |
|
| det | 前向时使用启动检测 | TRUE |
|
||||||
| rec | 前向时是否启动识别 | TRUE |
|
| rec | 前向时是否启动识别 | TRUE |
|
||||||
| cls | 前向时是否启动分类 | FALSE |
|
| cls | 前向时是否启动分类, 此参数仅存在于`代码使用`模式 | FALSE |
|
||||||
|
|
|
@ -2,6 +2,9 @@
|
||||||
|
|
||||||
## Get started quickly
|
## Get started quickly
|
||||||
### install package
|
### install package
|
||||||
|
|
||||||
|
First, you need to refer to [installation document](installation_en.md) to install paddlepaddle, and then start to install paddleocr package
|
||||||
|
|
||||||
install by pypi
|
install by pypi
|
||||||
```bash
|
```bash
|
||||||
pip install paddleocr
|
pip install paddleocr
|
||||||
|
@ -172,7 +175,7 @@ paddleocr -h
|
||||||
|
|
||||||
* detection classification and recognition
|
* detection classification and recognition
|
||||||
```bash
|
```bash
|
||||||
paddleocr --image_dir PaddleOCR/doc/imgs_en/img_12.jpg --use_angle_cls true -cls true --lang en
|
paddleocr --image_dir PaddleOCR/doc/imgs_en/img_12.jpg --use_angle_cls true --lang en
|
||||||
```
|
```
|
||||||
|
|
||||||
Output will be a list, each item contains bounding box, text and recognition confidence
|
Output will be a list, each item contains bounding box, text and recognition confidence
|
||||||
|
@ -198,7 +201,7 @@ Output will be a list, each item contains bounding box, text and recognition con
|
||||||
|
|
||||||
* classification and recognition
|
* classification and recognition
|
||||||
```bash
|
```bash
|
||||||
paddleocr --image_dir PaddleOCR/doc/imgs_words_en/word_10.png --use_angle_cls true -cls true --det false --lang en
|
paddleocr --image_dir PaddleOCR/doc/imgs_words_en/word_10.png --use_angle_cls true --det false --lang en
|
||||||
```
|
```
|
||||||
|
|
||||||
Output will be a list, each item contains text and recognition confidence
|
Output will be a list, each item contains text and recognition confidence
|
||||||
|
@ -221,7 +224,7 @@ Output will be a list, each item only contains bounding box
|
||||||
|
|
||||||
* only recognition
|
* only recognition
|
||||||
```bash
|
```bash
|
||||||
paddleocr --image_dir PaddleOCR/doc/imgs_words_en/word_10.png --det false --cls false --lang en
|
paddleocr --image_dir PaddleOCR/doc/imgs_words_en/word_10.png --det false --lang en
|
||||||
```
|
```
|
||||||
|
|
||||||
Output will be a list, each item contains text and recognition confidence
|
Output will be a list, each item contains text and recognition confidence
|
||||||
|
@ -231,7 +234,7 @@ Output will be a list, each item contains text and recognition confidence
|
||||||
|
|
||||||
* only classification
|
* only classification
|
||||||
```bash
|
```bash
|
||||||
paddleocr --image_dir PaddleOCR/doc/imgs_words_en/word_10.png --use_angle_cls true -cls true --det false --rec false
|
paddleocr --image_dir PaddleOCR/doc/imgs_words_en/word_10.png --use_angle_cls true --det false --rec false
|
||||||
```
|
```
|
||||||
|
|
||||||
Output will be a list, each item contains classification result and confidence
|
Output will be a list, each item contains classification result and confidence
|
||||||
|
@ -268,7 +271,7 @@ im_show.save('result.jpg')
|
||||||
### Use by command line
|
### Use by command line
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
paddleocr --image_dir PaddleOCR/doc/imgs/11.jpg --det_model_dir {your_det_model_dir} --rec_model_dir {your_rec_model_dir} --rec_char_dict_path {your_rec_char_dict_path} --cls_model_dir {your_cls_model_dir} --use_angle_cls true --cls true
|
paddleocr --image_dir PaddleOCR/doc/imgs/11.jpg --det_model_dir {your_det_model_dir} --rec_model_dir {your_rec_model_dir} --rec_char_dict_path {your_rec_char_dict_path} --cls_model_dir {your_cls_model_dir} --use_angle_cls true
|
||||||
```
|
```
|
||||||
|
|
||||||
## Parameter Description
|
## Parameter Description
|
||||||
|
@ -305,4 +308,4 @@ paddleocr --image_dir PaddleOCR/doc/imgs/11.jpg --det_model_dir {your_det_model_
|
||||||
| lang | The support language, now only Chinese(ch)、English(en)、French(french)、German(german)、Korean(korean)、Japanese(japan) are supported | ch |
|
| lang | The support language, now only Chinese(ch)、English(en)、French(french)、German(german)、Korean(korean)、Japanese(japan) are supported | ch |
|
||||||
| det | Enable detction when `ppocr.ocr` func exec | TRUE |
|
| det | Enable detction when `ppocr.ocr` func exec | TRUE |
|
||||||
| rec | Enable recognition when `ppocr.ocr` func exec | TRUE |
|
| rec | Enable recognition when `ppocr.ocr` func exec | TRUE |
|
||||||
| cls | Enable classification when `ppocr.ocr` func exec | FALSE |
|
| cls | Enable classification when `ppocr.ocr` func exec,this parameter only exists in `code usage` mode | FALSE |
|
||||||
|
|
Loading…
Reference in New Issue