Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
weixin_41840029
PaddleOCR
提交
92ef2a2d
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看板
未验证
提交
92ef2a2d
编写于
4月 07, 2021
作者:
D
Double_V
提交者:
GitHub
4月 07, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'dygraph' into fix_doc
上级
d354020d
32665fe5
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
24 addition
and
20 deletion
+24
-20
doc/doc_ch/whl.md
doc/doc_ch/whl.md
+6
-6
doc/doc_en/whl_en.md
doc/doc_en/whl_en.md
+6
-6
ppocr/data/simple_dataset.py
ppocr/data/simple_dataset.py
+12
-8
未找到文件。
doc/doc_ch/whl.md
浏览文件 @
92ef2a2d
...
@@ -36,7 +36,7 @@ image = Image.open(img_path).convert('RGB')
...
@@ -36,7 +36,7 @@ image = Image.open(img_path).convert('RGB')
boxes
=
[
line
[
0
]
for
line
in
result
]
boxes
=
[
line
[
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/simfang.ttf'
)
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/
fonts/
simfang.ttf'
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
.
save
(
'result.jpg'
)
im_show
.
save
(
'result.jpg'
)
```
```
...
@@ -69,7 +69,7 @@ image = Image.open(img_path).convert('RGB')
...
@@ -69,7 +69,7 @@ image = Image.open(img_path).convert('RGB')
boxes
=
[
line
[
0
]
for
line
in
result
]
boxes
=
[
line
[
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/simfang.ttf'
)
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/
fonts/
simfang.ttf'
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
.
save
(
'result.jpg'
)
im_show
.
save
(
'result.jpg'
)
```
```
...
@@ -114,7 +114,7 @@ for line in result:
...
@@ -114,7 +114,7 @@ for line in result:
from
PIL
import
Image
from
PIL
import
Image
image
=
Image
.
open
(
img_path
).
convert
(
'RGB'
)
image
=
Image
.
open
(
img_path
).
convert
(
'RGB'
)
im_show
=
draw_ocr
(
image
,
result
,
txts
=
None
,
scores
=
None
,
font_path
=
'/path/to/PaddleOCR/doc/simfang.ttf'
)
im_show
=
draw_ocr
(
image
,
result
,
txts
=
None
,
scores
=
None
,
font_path
=
'/path/to/PaddleOCR/doc/
fonts/
simfang.ttf'
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
.
save
(
'result.jpg'
)
im_show
.
save
(
'result.jpg'
)
```
```
...
@@ -253,7 +253,7 @@ image = Image.open(img_path).convert('RGB')
...
@@ -253,7 +253,7 @@ image = Image.open(img_path).convert('RGB')
boxes
=
[
line
[
0
]
for
line
in
result
]
boxes
=
[
line
[
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/simfang.ttf'
)
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/
fonts/
simfang.ttf'
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
.
save
(
'result.jpg'
)
im_show
.
save
(
'result.jpg'
)
```
```
...
@@ -285,7 +285,7 @@ image = Image.open(img_path).convert('RGB')
...
@@ -285,7 +285,7 @@ image = Image.open(img_path).convert('RGB')
boxes
=
[
line
[
0
]
for
line
in
result
]
boxes
=
[
line
[
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/simfang.ttf'
)
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/
fonts/
simfang.ttf'
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
.
save
(
'result.jpg'
)
im_show
.
save
(
'result.jpg'
)
```
```
...
@@ -314,7 +314,7 @@ image = Image.open(img_path).convert('RGB')
...
@@ -314,7 +314,7 @@ image = Image.open(img_path).convert('RGB')
boxes
=
[
line
[
0
]
for
line
in
result
]
boxes
=
[
line
[
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/simfang.ttf'
)
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/
fonts/
simfang.ttf'
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
.
save
(
'result.jpg'
)
im_show
.
save
(
'result.jpg'
)
```
```
...
...
doc/doc_en/whl_en.md
浏览文件 @
92ef2a2d
...
@@ -35,7 +35,7 @@ image = Image.open(img_path).convert('RGB')
...
@@ -35,7 +35,7 @@ image = Image.open(img_path).convert('RGB')
boxes
=
[
line
[
0
]
for
line
in
result
]
boxes
=
[
line
[
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/simfang.ttf'
)
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/
fonts/
simfang.ttf'
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
.
save
(
'result.jpg'
)
im_show
.
save
(
'result.jpg'
)
```
```
...
@@ -69,7 +69,7 @@ image = Image.open(img_path).convert('RGB')
...
@@ -69,7 +69,7 @@ image = Image.open(img_path).convert('RGB')
boxes
=
[
line
[
0
]
for
line
in
result
]
boxes
=
[
line
[
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/simfang.ttf'
)
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/
fonts/
simfang.ttf'
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
.
save
(
'result.jpg'
)
im_show
.
save
(
'result.jpg'
)
```
```
...
@@ -116,7 +116,7 @@ for line in result:
...
@@ -116,7 +116,7 @@ for line in result:
from
PIL
import
Image
from
PIL
import
Image
image
=
Image
.
open
(
img_path
).
convert
(
'RGB'
)
image
=
Image
.
open
(
img_path
).
convert
(
'RGB'
)
im_show
=
draw_ocr
(
image
,
result
,
txts
=
None
,
scores
=
None
,
font_path
=
'/path/to/PaddleOCR/doc/simfang.ttf'
)
im_show
=
draw_ocr
(
image
,
result
,
txts
=
None
,
scores
=
None
,
font_path
=
'/path/to/PaddleOCR/doc/
fonts/
simfang.ttf'
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
.
save
(
'result.jpg'
)
im_show
.
save
(
'result.jpg'
)
```
```
...
@@ -262,7 +262,7 @@ image = Image.open(img_path).convert('RGB')
...
@@ -262,7 +262,7 @@ image = Image.open(img_path).convert('RGB')
boxes
=
[
line
[
0
]
for
line
in
result
]
boxes
=
[
line
[
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/simfang.ttf'
)
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/
fonts/
simfang.ttf'
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
.
save
(
'result.jpg'
)
im_show
.
save
(
'result.jpg'
)
```
```
...
@@ -292,7 +292,7 @@ image = Image.open(img_path).convert('RGB')
...
@@ -292,7 +292,7 @@ image = Image.open(img_path).convert('RGB')
boxes
=
[
line
[
0
]
for
line
in
result
]
boxes
=
[
line
[
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/simfang.ttf'
)
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/
fonts/
simfang.ttf'
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
.
save
(
'result.jpg'
)
im_show
.
save
(
'result.jpg'
)
```
```
...
@@ -320,7 +320,7 @@ image = Image.open(img_path).convert('RGB')
...
@@ -320,7 +320,7 @@ image = Image.open(img_path).convert('RGB')
boxes
=
[
line
[
0
]
for
line
in
result
]
boxes
=
[
line
[
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
txts
=
[
line
[
1
][
0
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
scores
=
[
line
[
1
][
1
]
for
line
in
result
]
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/simfang.ttf'
)
im_show
=
draw_ocr
(
image
,
boxes
,
txts
,
scores
,
font_path
=
'/path/to/PaddleOCR/doc/
fonts/
simfang.ttf'
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
=
Image
.
fromarray
(
im_show
)
im_show
.
save
(
'result.jpg'
)
im_show
.
save
(
'result.jpg'
)
```
```
...
...
ppocr/data/simple_dataset.py
浏览文件 @
92ef2a2d
...
@@ -23,6 +23,7 @@ class SimpleDataSet(Dataset):
...
@@ -23,6 +23,7 @@ class SimpleDataSet(Dataset):
def
__init__
(
self
,
config
,
mode
,
logger
,
seed
=
None
):
def
__init__
(
self
,
config
,
mode
,
logger
,
seed
=
None
):
super
(
SimpleDataSet
,
self
).
__init__
()
super
(
SimpleDataSet
,
self
).
__init__
()
self
.
logger
=
logger
self
.
logger
=
logger
self
.
mode
=
mode
.
lower
()
global_config
=
config
[
'Global'
]
global_config
=
config
[
'Global'
]
dataset_config
=
config
[
mode
][
'dataset'
]
dataset_config
=
config
[
mode
][
'dataset'
]
...
@@ -45,7 +46,7 @@ class SimpleDataSet(Dataset):
...
@@ -45,7 +46,7 @@ class SimpleDataSet(Dataset):
logger
.
info
(
"Initialize indexs of datasets:%s"
%
label_file_list
)
logger
.
info
(
"Initialize indexs of datasets:%s"
%
label_file_list
)
self
.
data_lines
=
self
.
get_image_info_list
(
label_file_list
,
ratio_list
)
self
.
data_lines
=
self
.
get_image_info_list
(
label_file_list
,
ratio_list
)
self
.
data_idx_order_list
=
list
(
range
(
len
(
self
.
data_lines
)))
self
.
data_idx_order_list
=
list
(
range
(
len
(
self
.
data_lines
)))
if
mode
.
lower
()
==
"train"
:
if
self
.
mode
==
"train"
and
self
.
do_shuffle
:
self
.
shuffle_data_random
()
self
.
shuffle_data_random
()
self
.
ops
=
create_operators
(
dataset_config
[
'transforms'
],
global_config
)
self
.
ops
=
create_operators
(
dataset_config
[
'transforms'
],
global_config
)
...
@@ -56,16 +57,16 @@ class SimpleDataSet(Dataset):
...
@@ -56,16 +57,16 @@ class SimpleDataSet(Dataset):
for
idx
,
file
in
enumerate
(
file_list
):
for
idx
,
file
in
enumerate
(
file_list
):
with
open
(
file
,
"rb"
)
as
f
:
with
open
(
file
,
"rb"
)
as
f
:
lines
=
f
.
readlines
()
lines
=
f
.
readlines
()
random
.
seed
(
self
.
seed
)
if
self
.
mode
==
"train"
or
ratio_list
[
idx
]
<
1.0
:
lines
=
random
.
sample
(
lines
,
random
.
seed
(
self
.
seed
)
round
(
len
(
lines
)
*
ratio_list
[
idx
]))
lines
=
random
.
sample
(
lines
,
round
(
len
(
lines
)
*
ratio_list
[
idx
]))
data_lines
.
extend
(
lines
)
data_lines
.
extend
(
lines
)
return
data_lines
return
data_lines
def
shuffle_data_random
(
self
):
def
shuffle_data_random
(
self
):
if
self
.
do_shuffle
:
random
.
seed
(
self
.
seed
)
random
.
seed
(
self
.
seed
)
random
.
shuffle
(
self
.
data_lines
)
random
.
shuffle
(
self
.
data_lines
)
return
return
def
__getitem__
(
self
,
idx
):
def
__getitem__
(
self
,
idx
):
...
@@ -90,7 +91,10 @@ class SimpleDataSet(Dataset):
...
@@ -90,7 +91,10 @@ class SimpleDataSet(Dataset):
data_line
,
e
))
data_line
,
e
))
outs
=
None
outs
=
None
if
outs
is
None
:
if
outs
is
None
:
return
self
.
__getitem__
(
np
.
random
.
randint
(
self
.
__len__
()))
# during evaluation, we should fix the idx to get same results for many times of evaluation.
rnd_idx
=
np
.
random
.
randint
(
self
.
__len__
(
))
if
self
.
mode
==
"train"
else
(
idx
+
1
)
%
self
.
__len__
()
return
self
.
__getitem__
(
rnd_idx
)
return
outs
return
outs
def
__len__
(
self
):
def
__len__
(
self
):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录