Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
weixin_41840029
PaddleOCR
提交
93705083
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看板
未验证
提交
93705083
编写于
11月 22, 2021
作者:
littletomatodonkey
提交者:
GitHub
11月 22, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix cpp infer doc (#4710)
* fix cpp infer doc * fix utility * fix path
上级
967b42a5
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
49 addition
and
17 deletion
+49
-17
deploy/cpp_infer/readme.md
deploy/cpp_infer/readme.md
+18
-12
deploy/cpp_infer/readme_en.md
deploy/cpp_infer/readme_en.md
+3
-3
deploy/cpp_infer/tools/build_opencv.sh
deploy/cpp_infer/tools/build_opencv.sh
+28
-0
tools/infer/predict_e2e.py
tools/infer/predict_e2e.py
+0
-1
tools/infer/utility.py
tools/infer/utility.py
+0
-1
未找到文件。
deploy/cpp_infer/readme.md
浏览文件 @
93705083
...
...
@@ -34,10 +34,10 @@ PaddleOCR模型部署。
*
首先需要从opencv官网上下载在Linux环境下源码编译的包,以opencv3.4.7为例,下载命令如下。
```
```
bash
cd
deploy/cpp_infer
wget https://
github.com/opencv/opencv/archive/
3.4.7.tar.gz
tar -xf 3.4.7.tar.gz
wget https://
paddleocr.bj.bcebos.com/libs/opencv/opencv-
3.4.7.tar.gz
tar
-xf
opencv-
3.4.7.tar.gz
```
最终可以在当前目录下看到
`opencv-3.4.7/`
的文件夹。
...
...
@@ -45,12 +45,13 @@ tar -xf 3.4.7.tar.gz
*
编译opencv,设置opencv源码路径(
`root_path`
)以及安装路径(
`install_path`
)。进入opencv源码路径下,按照下面的方式进行编译。
```
shell
root_path
=
your_opencv_root_path
root_path
=
"your_opencv_root_path"
install_path
=
${
root_path
}
/opencv3
build_dir
=
${
root_path
}
/build
rm
-rf
build
mkdir
build
cd
build
rm
-rf
${
build_dir
}
mkdir
${
build_dir
}
cd
${
build_dir
}
cmake ..
\
-DCMAKE_INSTALL_PREFIX
=
${
install_path
}
\
...
...
@@ -74,6 +75,11 @@ make -j
make
install
```
也可以直接修改
`tools/build_opencv.sh`
的内容,然后直接运行下面的命令进行编译。
```
shell
sh tools/build_opencv.sh
```
其中
`root_path`
为下载的opencv源码路径,
`install_path`
为opencv的安装路径,
`make install`
完成之后,会在该文件夹下生成opencv头文件和库文件,用于后面的OCR代码编译。
...
...
@@ -233,12 +239,12 @@ CUDNN_LIB_DIR=/your_cudnn_lib_dir
--image_dir
=
../../doc/imgs/12.jpg
```
更多
参数
如下:
更多
支持的可调节参数解释
如下:
-
通用参数
|参数名称|类型|默认参数|意义|
|
--- | --- | --- | ---
|
|
:---: | :---: | :---: | :---:
|
|use_gpu|bool|false|是否使用GPU|
|gpu_id|int|0|GPU id,使用GPU时有效|
|gpu_mem|int|4000|申请的GPU内存|
...
...
@@ -248,7 +254,7 @@ CUDNN_LIB_DIR=/your_cudnn_lib_dir
-
检测模型相关
|参数名称|类型|默认参数|意义|
|
--- | --- | --- | ---
|
|
:---: | :---: | :---: | :---:
|
|det_model_dir|string|-|检测模型inference model地址|
|max_side_len|int|960|输入图像长宽大于960时,等比例缩放图像,使得图像最长边为960|
|det_db_thresh|float|0.3|用于过滤DB预测的二值化图像,设置为0.-0.3对结果影响不明显|
...
...
@@ -260,7 +266,7 @@ CUDNN_LIB_DIR=/your_cudnn_lib_dir
-
方向分类器相关
|参数名称|类型|默认参数|意义|
|
--- | --- | --- | ---
|
|
:---: | :---: | :---: | :---:
|
|use_angle_cls|bool|false|是否使用方向分类器|
|cls_model_dir|string|-|方向分类器inference model地址|
|cls_thresh|float|0.9|方向分类器的得分阈值|
...
...
@@ -268,7 +274,7 @@ CUDNN_LIB_DIR=/your_cudnn_lib_dir
-
识别模型相关
|参数名称|类型|默认参数|意义|
|
--- | --- | --- | ---
|
|
:---: | :---: | :---: | :---:
|
|rec_model_dir|string|-|识别模型inference model地址|
|char_list_file|string|../../ppocr/utils/ppocr_keys_v1.txt|字典文件|
...
...
deploy/cpp_infer/readme_en.md
浏览文件 @
93705083
...
...
@@ -17,10 +17,10 @@ PaddleOCR model deployment.
*
First of all, you need to download the source code compiled package in the Linux environment from the opencv official website. Taking opencv3.4.7 as an example, the download command is as follows.
```
```
bash
cd
deploy/cpp_infer
wget https://
github.com/opencv/opencv/archive/
3.4.7.tar.gz
tar -xf 3.4.7.tar.gz
wget https://
paddleocr.bj.bcebos.com/libs/opencv/opencv-
3.4.7.tar.gz
tar
-xf
opencv-
3.4.7.tar.gz
```
Finally, you can see the folder of
`opencv-3.4.7/`
in the current directory.
...
...
deploy/cpp_infer/tools/build_opencv.sh
0 → 100644
浏览文件 @
93705083
root_path
=
"/paddle/PaddleOCR/deploy/cpp_infer/opencv-3.4.7"
install_path
=
${
root_path
}
/opencv3
build_dir
=
${
root_path
}
/build
rm
-rf
${
build_dir
}
mkdir
${
build_dir
}
cd
${
build_dir
}
cmake ..
\
-DCMAKE_INSTALL_PREFIX
=
${
install_path
}
\
-DCMAKE_BUILD_TYPE
=
Release
\
-DBUILD_SHARED_LIBS
=
OFF
\
-DWITH_IPP
=
OFF
\
-DBUILD_IPP_IW
=
OFF
\
-DWITH_LAPACK
=
OFF
\
-DWITH_EIGEN
=
OFF
\
-DCMAKE_INSTALL_LIBDIR
=
lib64
\
-DWITH_ZLIB
=
ON
\
-DBUILD_ZLIB
=
ON
\
-DWITH_JPEG
=
ON
\
-DBUILD_JPEG
=
ON
\
-DWITH_PNG
=
ON
\
-DBUILD_PNG
=
ON
\
-DWITH_TIFF
=
ON
\
-DBUILD_TIFF
=
ON
make
-j
make
install
tools/infer/predict_e2e.py
浏览文件 @
93705083
...
...
@@ -68,7 +68,6 @@ class TextE2E(object):
postprocess_params
[
"character_dict_path"
]
=
args
.
e2e_char_dict_path
postprocess_params
[
"valid_set"
]
=
args
.
e2e_pgnet_valid_set
postprocess_params
[
"mode"
]
=
args
.
e2e_pgnet_mode
self
.
e2e_pgnet_polygon
=
args
.
e2e_pgnet_polygon
else
:
logger
.
info
(
"unknown e2e_algorithm:{}"
.
format
(
self
.
e2e_algorithm
))
sys
.
exit
(
0
)
...
...
tools/infer/utility.py
浏览文件 @
93705083
...
...
@@ -96,7 +96,6 @@ def init_args():
parser
.
add_argument
(
"--e2e_char_dict_path"
,
type
=
str
,
default
=
"./ppocr/utils/ic15_dict.txt"
)
parser
.
add_argument
(
"--e2e_pgnet_valid_set"
,
type
=
str
,
default
=
'totaltext'
)
parser
.
add_argument
(
"--e2e_pgnet_polygon"
,
type
=
str2bool
,
default
=
True
)
parser
.
add_argument
(
"--e2e_pgnet_mode"
,
type
=
str
,
default
=
'fast'
)
# params for text classifier
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录