Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleOCR
提交
0c8acf90
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看板
提交
0c8acf90
编写于
11月 04, 2021
作者:
L
LDOUBLEV
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add refer to east and sast preprocess
上级
9b9b2d60
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
14 addition
and
14 deletion
+14
-14
ppocr/data/imaug/east_process.py
ppocr/data/imaug/east_process.py
+10
-13
ppocr/data/imaug/sast_process.py
ppocr/data/imaug/sast_process.py
+4
-1
未找到文件。
ppocr/data/imaug/east_process.py
浏览文件 @
0c8acf90
...
...
@@ -11,7 +11,10 @@
#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#See the License for the specific language governing permissions and
#limitations under the License.
"""
This code is refer from:
https://github.com/songdejia/EAST/blob/master/data_utils.py
"""
import
math
import
cv2
import
numpy
as
np
...
...
@@ -24,10 +27,10 @@ __all__ = ['EASTProcessTrain']
class
EASTProcessTrain
(
object
):
def
__init__
(
self
,
image_shape
=
[
512
,
512
],
background_ratio
=
0.125
,
min_crop_side_ratio
=
0.1
,
min_text_size
=
10
,
image_shape
=
[
512
,
512
],
background_ratio
=
0.125
,
min_crop_side_ratio
=
0.1
,
min_text_size
=
10
,
**
kwargs
):
self
.
input_size
=
image_shape
[
1
]
self
.
random_scale
=
np
.
array
([
0.5
,
1
,
2.0
,
3.0
])
...
...
@@ -282,12 +285,7 @@ class EASTProcessTrain(object):
1.0
/
max
(
min
(
poly_h
,
poly_w
),
1.0
)
return
score_map
,
geo_map
,
training_mask
def
crop_area
(
self
,
im
,
polys
,
tags
,
crop_background
=
False
,
max_tries
=
50
):
def
crop_area
(
self
,
im
,
polys
,
tags
,
crop_background
=
False
,
max_tries
=
50
):
"""
make random crop from the input image
:param im:
...
...
@@ -435,5 +433,4 @@ class EASTProcessTrain(object):
data
[
'score_map'
]
=
score_map
data
[
'geo_map'
]
=
geo_map
data
[
'training_mask'
]
=
training_mask
# print(im.shape, score_map.shape, geo_map.shape, training_mask.shape)
return
data
\ No newline at end of file
return
data
ppocr/data/imaug/sast_process.py
浏览文件 @
0c8acf90
...
...
@@ -11,7 +11,10 @@
#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#See the License for the specific language governing permissions and
#limitations under the License.
"""
This part code is refer from:
https://github.com/songdejia/EAST/blob/master/data_utils.py
"""
import
math
import
cv2
import
numpy
as
np
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录