Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleOCR
提交
3337dee6
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看板
提交
3337dee6
编写于
8月 01, 2022
作者:
xuyang2233
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fixed rec_img_aug 20220801
上级
c5e39657
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
21 addition
and
21 deletion
+21
-21
configs/rec/rec_r31_robustscanner.yml
configs/rec/rec_r31_robustscanner.yml
+4
-2
ppocr/data/imaug/rec_img_aug.py
ppocr/data/imaug/rec_img_aug.py
+17
-19
未找到文件。
configs/rec/rec_r31_robustscanner.yml
浏览文件 @
3337dee6
...
...
@@ -66,7 +66,8 @@ Metric:
Train
:
dataset
:
name
:
LMDBDataSet
data_dir
:
./train_data/data_lmdb_release/training/
# data_dir: ./train_data/data_lmdb_release/training/
data_dir
:
I:/dataset/OCR/STR/evaluation/evaluation/CUTE80
transforms
:
-
DecodeImage
:
# load image
img_mode
:
BGR
...
...
@@ -88,7 +89,8 @@ Train:
Eval
:
dataset
:
name
:
LMDBDataSet
data_dir
:
./train_data/data_lmdb_release/evaluation/
# data_dir: ./train_data/data_lmdb_release/evaluation/
data_dir
:
I:/dataset/OCR/STR/evaluation/evaluation/CUTE80
transforms
:
-
DecodeImage
:
# load image
img_mode
:
BGR
...
...
ppocr/data/imaug/rec_img_aug.py
浏览文件 @
3337dee6
...
...
@@ -259,24 +259,6 @@ class PRENResizeImg(object):
data
[
'image'
]
=
resized_img
.
astype
(
np
.
float32
)
return
data
<<<<<<<
HEAD
class
RobustScannerRecResizeImg
(
object
):
def
__init__
(
self
,
image_shape
,
max_text_length
,
width_downsample_ratio
=
0.25
,
**
kwargs
):
self
.
image_shape
=
image_shape
self
.
width_downsample_ratio
=
width_downsample_ratio
self
.
max_text_length
=
max_text_length
def
__call__
(
self
,
data
):
img
=
data
[
'image'
]
norm_img
,
resize_shape
,
pad_shape
,
valid_ratio
=
resize_norm_img_sar
(
img
,
self
.
image_shape
,
self
.
width_downsample_ratio
)
word_positons
=
np
.
array
(
range
(
0
,
self
.
max_text_length
)).
astype
(
'int64'
)
data
[
'image'
]
=
norm_img
data
[
'resized_shape'
]
=
resize_shape
data
[
'pad_shape'
]
=
pad_shape
data
[
'valid_ratio'
]
=
valid_ratio
data
[
'word_positons'
]
=
word_positons
=======
class
SPINRecResizeImg
(
object
):
def
__init__
(
self
,
image_shape
,
...
...
@@ -319,7 +301,6 @@ class SPINRecResizeImg(object):
img
-=
mean
img
*=
stdinv
data
[
'image'
]
=
img
>>>>>>>
1696
b36bdb4152138ed5cb08a357df8fe03dc067
return
data
class
GrayRecResizeImg
(
object
):
...
...
@@ -399,6 +380,23 @@ class SVTRRecResizeImg(object):
data
[
'valid_ratio'
]
=
valid_ratio
return
data
class
RobustScannerRecResizeImg
(
object
):
def
__init__
(
self
,
image_shape
,
max_text_length
,
width_downsample_ratio
=
0.25
,
**
kwargs
):
self
.
image_shape
=
image_shape
self
.
width_downsample_ratio
=
width_downsample_ratio
self
.
max_text_length
=
max_text_length
def
__call__
(
self
,
data
):
img
=
data
[
'image'
]
norm_img
,
resize_shape
,
pad_shape
,
valid_ratio
=
resize_norm_img_sar
(
img
,
self
.
image_shape
,
self
.
width_downsample_ratio
)
word_positons
=
np
.
array
(
range
(
0
,
self
.
max_text_length
)).
astype
(
'int64'
)
data
[
'image'
]
=
norm_img
data
[
'resized_shape'
]
=
resize_shape
data
[
'pad_shape'
]
=
pad_shape
data
[
'valid_ratio'
]
=
valid_ratio
data
[
'word_positons'
]
=
word_positons
return
data
def
resize_norm_img_sar
(
img
,
image_shape
,
width_downsample_ratio
=
0.25
):
imgC
,
imgH
,
imgW_min
,
imgW_max
=
image_shape
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录