Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
9bc2041e
P
PaddleClas
项目概览
PaddlePaddle
/
PaddleClas
大约 1 年 前同步成功
通知
115
Star
4999
Fork
1114
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
19
列表
看板
标记
里程碑
合并请求
6
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleClas
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
19
Issue
19
列表
看板
标记
里程碑
合并请求
6
合并请求
6
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
9bc2041e
编写于
9月 17, 2021
作者:
C
cuicheng01
提交者:
GitHub
9月 17, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1228 from TingquanGao/dev/support_pil_resize
feat: support pil resize
上级
ba9b708a
64c37000
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
126 addition
and
26 deletion
+126
-26
deploy/python/preprocess.py
deploy/python/preprocess.py
+63
-13
ppcls/data/preprocess/ops/operators.py
ppcls/data/preprocess/ops/operators.py
+63
-13
未找到文件。
deploy/python/preprocess.py
浏览文件 @
9bc2041e
...
...
@@ -19,12 +19,14 @@ from __future__ import division
from
__future__
import
print_function
from
__future__
import
unicode_literals
from
functools
import
partial
import
six
import
math
import
random
import
cv2
import
numpy
as
np
import
importlib
from
PIL
import
Image
from
python.det_preprocess
import
DetNormalizeImage
,
DetPadStride
,
DetPermute
,
DetResize
...
...
@@ -50,6 +52,47 @@ def create_operators(params):
return
ops
class
UnifiedResize
(
object
):
def
__init__
(
self
,
interpolation
=
None
,
backend
=
"cv2"
):
_cv2_interp_from_str
=
{
'nearest'
:
cv2
.
INTER_NEAREST
,
'bilinear'
:
cv2
.
INTER_LINEAR
,
'area'
:
cv2
.
INTER_AREA
,
'bicubic'
:
cv2
.
INTER_CUBIC
,
'lanczos'
:
cv2
.
INTER_LANCZOS4
}
_pil_interp_from_str
=
{
'nearest'
:
Image
.
NEAREST
,
'bilinear'
:
Image
.
BILINEAR
,
'bicubic'
:
Image
.
BICUBIC
,
'box'
:
Image
.
BOX
,
'lanczos'
:
Image
.
LANCZOS
,
'hamming'
:
Image
.
HAMMING
}
def
_pil_resize
(
src
,
size
,
resample
):
pil_img
=
Image
.
fromarray
(
src
)
pil_img
=
pil_img
.
resize
(
size
,
resample
)
return
np
.
asarray
(
pil_img
)
if
backend
.
lower
()
==
"cv2"
:
if
isinstance
(
interpolation
,
str
):
interpolation
=
_cv2_interp_from_str
[
interpolation
.
lower
()]
self
.
resize_func
=
partial
(
cv2
.
resize
,
interpolation
=
interpolation
)
elif
backend
.
lower
()
==
"pil"
:
if
isinstance
(
interpolation
,
str
):
interpolation
=
_pil_interp_from_str
[
interpolation
.
lower
()]
self
.
resize_func
=
partial
(
_pil_resize
,
resample
=
interpolation
)
else
:
logger
.
warning
(
f
"The backend of Resize only support
\"
cv2
\"
or
\"
PIL
\"
.
\"
f
{
backend
}
\"
is unavailable. Use
\"
cv2
\"
instead."
)
self
.
resize_func
=
cv2
.
resize
def
__call__
(
self
,
src
,
size
):
return
self
.
resize_func
(
src
,
size
)
class
OperatorParamError
(
ValueError
):
""" OperatorParamError
"""
...
...
@@ -87,8 +130,11 @@ class DecodeImage(object):
class
ResizeImage
(
object
):
""" resize image """
def
__init__
(
self
,
size
=
None
,
resize_short
=
None
,
interpolation
=-
1
):
self
.
interpolation
=
interpolation
if
interpolation
>=
0
else
None
def
__init__
(
self
,
size
=
None
,
resize_short
=
None
,
interpolation
=
None
,
backend
=
"cv2"
):
if
resize_short
is
not
None
and
resize_short
>
0
:
self
.
resize_short
=
resize_short
self
.
w
=
None
...
...
@@ -101,6 +147,9 @@ class ResizeImage(object):
raise
OperatorParamError
(
"invalid params for ReisizeImage for '
\
'both 'size' and 'resize_short' are None"
)
self
.
_resize_func
=
UnifiedResize
(
interpolation
=
interpolation
,
backend
=
backend
)
def
__call__
(
self
,
img
):
img_h
,
img_w
=
img
.
shape
[:
2
]
if
self
.
resize_short
is
not
None
:
...
...
@@ -110,10 +159,7 @@ class ResizeImage(object):
else
:
w
=
self
.
w
h
=
self
.
h
if
self
.
interpolation
is
None
:
return
cv2
.
resize
(
img
,
(
w
,
h
))
else
:
return
cv2
.
resize
(
img
,
(
w
,
h
),
interpolation
=
self
.
interpolation
)
return
self
.
_resize_func
(
img
,
(
w
,
h
))
class
CropImage
(
object
):
...
...
@@ -145,9 +191,12 @@ class CropImage(object):
class
RandCropImage
(
object
):
""" random crop image """
def
__init__
(
self
,
size
,
scale
=
None
,
ratio
=
None
,
interpolation
=-
1
):
self
.
interpolation
=
interpolation
if
interpolation
>=
0
else
None
def
__init__
(
self
,
size
,
scale
=
None
,
ratio
=
None
,
interpolation
=
None
,
backend
=
"cv2"
):
if
type
(
size
)
is
int
:
self
.
size
=
(
size
,
size
)
# (h, w)
else
:
...
...
@@ -156,6 +205,9 @@ class RandCropImage(object):
self
.
scale
=
[
0.08
,
1.0
]
if
scale
is
None
else
scale
self
.
ratio
=
[
3.
/
4.
,
4.
/
3.
]
if
ratio
is
None
else
ratio
self
.
_resize_func
=
UnifiedResize
(
interpolation
=
interpolation
,
backend
=
backend
)
def
__call__
(
self
,
img
):
size
=
self
.
size
scale
=
self
.
scale
...
...
@@ -181,10 +233,8 @@ class RandCropImage(object):
j
=
random
.
randint
(
0
,
img_h
-
h
)
img
=
img
[
j
:
j
+
h
,
i
:
i
+
w
,
:]
if
self
.
interpolation
is
None
:
return
cv2
.
resize
(
img
,
size
)
else
:
return
cv2
.
resize
(
img
,
size
,
interpolation
=
self
.
interpolation
)
return
self
.
_resize_func
(
img
,
size
)
class
RandFlipImage
(
object
):
...
...
ppcls/data/preprocess/ops/operators.py
浏览文件 @
9bc2041e
...
...
@@ -19,6 +19,7 @@ from __future__ import division
from
__future__
import
print_function
from
__future__
import
unicode_literals
from
functools
import
partial
import
six
import
math
import
random
...
...
@@ -28,6 +29,48 @@ from PIL import Image
from
.autoaugment
import
ImageNetPolicy
from
.functional
import
augmentations
from
ppcls.utils
import
logger
class
UnifiedResize
(
object
):
def
__init__
(
self
,
interpolation
=
None
,
backend
=
"cv2"
):
_cv2_interp_from_str
=
{
'nearest'
:
cv2
.
INTER_NEAREST
,
'bilinear'
:
cv2
.
INTER_LINEAR
,
'area'
:
cv2
.
INTER_AREA
,
'bicubic'
:
cv2
.
INTER_CUBIC
,
'lanczos'
:
cv2
.
INTER_LANCZOS4
}
_pil_interp_from_str
=
{
'nearest'
:
Image
.
NEAREST
,
'bilinear'
:
Image
.
BILINEAR
,
'bicubic'
:
Image
.
BICUBIC
,
'box'
:
Image
.
BOX
,
'lanczos'
:
Image
.
LANCZOS
,
'hamming'
:
Image
.
HAMMING
}
def
_pil_resize
(
src
,
size
,
resample
):
pil_img
=
Image
.
fromarray
(
src
)
pil_img
=
pil_img
.
resize
(
size
,
resample
)
return
np
.
asarray
(
pil_img
)
if
backend
.
lower
()
==
"cv2"
:
if
isinstance
(
interpolation
,
str
):
interpolation
=
_cv2_interp_from_str
[
interpolation
.
lower
()]
self
.
resize_func
=
partial
(
cv2
.
resize
,
interpolation
=
interpolation
)
elif
backend
.
lower
()
==
"pil"
:
if
isinstance
(
interpolation
,
str
):
interpolation
=
_pil_interp_from_str
[
interpolation
.
lower
()]
self
.
resize_func
=
partial
(
_pil_resize
,
resample
=
interpolation
)
else
:
logger
.
warning
(
f
"The backend of Resize only support
\"
cv2
\"
or
\"
PIL
\"
.
\"
f
{
backend
}
\"
is unavailable. Use
\"
cv2
\"
instead."
)
self
.
resize_func
=
cv2
.
resize
def
__call__
(
self
,
src
,
size
):
return
self
.
resize_func
(
src
,
size
)
class
OperatorParamError
(
ValueError
):
...
...
@@ -67,8 +110,11 @@ class DecodeImage(object):
class
ResizeImage
(
object
):
""" resize image """
def
__init__
(
self
,
size
=
None
,
resize_short
=
None
,
interpolation
=-
1
):
self
.
interpolation
=
interpolation
if
interpolation
>=
0
else
None
def
__init__
(
self
,
size
=
None
,
resize_short
=
None
,
interpolation
=
None
,
backend
=
"cv2"
):
if
resize_short
is
not
None
and
resize_short
>
0
:
self
.
resize_short
=
resize_short
self
.
w
=
None
...
...
@@ -81,6 +127,9 @@ class ResizeImage(object):
raise
OperatorParamError
(
"invalid params for ReisizeImage for '
\
'both 'size' and 'resize_short' are None"
)
self
.
_resize_func
=
UnifiedResize
(
interpolation
=
interpolation
,
backend
=
backend
)
def
__call__
(
self
,
img
):
img_h
,
img_w
=
img
.
shape
[:
2
]
if
self
.
resize_short
is
not
None
:
...
...
@@ -90,10 +139,7 @@ class ResizeImage(object):
else
:
w
=
self
.
w
h
=
self
.
h
if
self
.
interpolation
is
None
:
return
cv2
.
resize
(
img
,
(
w
,
h
))
else
:
return
cv2
.
resize
(
img
,
(
w
,
h
),
interpolation
=
self
.
interpolation
)
return
self
.
_resize_func
(
img
,
(
w
,
h
))
class
CropImage
(
object
):
...
...
@@ -119,9 +165,12 @@ class CropImage(object):
class
RandCropImage
(
object
):
""" random crop image """
def
__init__
(
self
,
size
,
scale
=
None
,
ratio
=
None
,
interpolation
=-
1
):
self
.
interpolation
=
interpolation
if
interpolation
>=
0
else
None
def
__init__
(
self
,
size
,
scale
=
None
,
ratio
=
None
,
interpolation
=
None
,
backend
=
"cv2"
):
if
type
(
size
)
is
int
:
self
.
size
=
(
size
,
size
)
# (h, w)
else
:
...
...
@@ -130,6 +179,9 @@ class RandCropImage(object):
self
.
scale
=
[
0.08
,
1.0
]
if
scale
is
None
else
scale
self
.
ratio
=
[
3.
/
4.
,
4.
/
3.
]
if
ratio
is
None
else
ratio
self
.
_resize_func
=
UnifiedResize
(
interpolation
=
interpolation
,
backend
=
backend
)
def
__call__
(
self
,
img
):
size
=
self
.
size
scale
=
self
.
scale
...
...
@@ -155,10 +207,8 @@ class RandCropImage(object):
j
=
random
.
randint
(
0
,
img_h
-
h
)
img
=
img
[
j
:
j
+
h
,
i
:
i
+
w
,
:]
if
self
.
interpolation
is
None
:
return
cv2
.
resize
(
img
,
size
)
else
:
return
cv2
.
resize
(
img
,
size
,
interpolation
=
self
.
interpolation
)
return
self
.
_resize_func
(
img
,
size
)
class
RandFlipImage
(
object
):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录