Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
8901f23d
M
models
项目概览
PaddlePaddle
/
models
大约 1 年 前同步成功
通知
222
Star
6828
Fork
2962
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
602
列表
看板
标记
里程碑
合并请求
255
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
models
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
602
Issue
602
列表
看板
标记
里程碑
合并请求
255
合并请求
255
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
8901f23d
编写于
7月 29, 2019
作者:
J
jerrywgz
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add target shape for resize image
上级
4a93b001
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
23 addition
and
4 deletion
+23
-4
PaddleCV/PaddleDetection/ppdet/data/transform/operators.py
PaddleCV/PaddleDetection/ppdet/data/transform/operators.py
+23
-4
未找到文件。
PaddleCV/PaddleDetection/ppdet/data/transform/operators.py
浏览文件 @
8901f23d
...
...
@@ -124,7 +124,8 @@ class ResizeImage(BaseOperator):
target_size
=
0
,
max_size
=
0
,
interp
=
cv2
.
INTER_LINEAR
,
use_cv2
=
True
):
use_cv2
=
True
,
target_shape
=
None
):
"""
Args:
target_size (int|list): the target size of image's short side,
...
...
@@ -133,6 +134,9 @@ class ResizeImage(BaseOperator):
interp (int): the interpolation method
use_cv2 (bool): use the cv2 interpolation method or use PIL
interpolation method
target_shape(None|list): resized shape after ResizeImage and it
has higher priority than target_size and max_size.
Format is [w, h].
"""
super
(
ResizeImage
,
self
).
__init__
()
self
.
max_size
=
int
(
max_size
)
...
...
@@ -146,6 +150,11 @@ class ResizeImage(BaseOperator):
if
not
(
isinstance
(
self
.
max_size
,
int
)
and
isinstance
(
self
.
interp
,
int
)):
raise
TypeError
(
"{}: input type is invalid."
.
format
(
self
))
if
target_shape
and
not
isinstance
(
target_shape
,
list
):
raise
TypeError
(
"Type of target_shape input type is invalid. Must be List, now is {}"
.
format
(
type
(
target_shape
)))
self
.
target_shape
=
target_shape
def
__call__
(
self
,
sample
,
context
=
None
):
""" Resise the image numpy.
...
...
@@ -155,6 +164,17 @@ class ResizeImage(BaseOperator):
raise
TypeError
(
"{}: image type is not numpy."
.
format
(
self
))
if
len
(
im
.
shape
)
!=
3
:
raise
ImageError
(
'{}: image is not 3-dimensional.'
.
format
(
self
))
if
self
.
target_shape
:
if
self
.
use_cv2
:
im
=
cv2
.
resize
(
im
,
tuple
(
self
.
target_shape
),
interpolation
=
self
.
interp
)
else
:
im
=
Image
.
fromarray
(
np
.
uint8
(
im
))
im
=
im
.
resize
(
tuple
(
self
.
target_shape
),
self
.
interp
)
im
=
np
.
array
(
im
)
sample
[
'image'
]
=
im
return
sample
im_shape
=
im
.
shape
im_size_min
=
np
.
min
(
im_shape
[
0
:
2
])
im_size_max
=
np
.
max
(
im_shape
[
0
:
2
])
...
...
@@ -191,11 +211,10 @@ class ResizeImage(BaseOperator):
interpolation
=
self
.
interp
)
else
:
im
=
Image
.
fromarray
(
im
)
resize_w
=
selected_size
*
im_scale_x
resize_h
=
selected_size
*
im_scale_y
resize_w
=
selected_size
resize_h
=
selected_size
im
=
im
.
resize
((
resize_w
,
resize_h
),
self
.
interp
)
im
=
np
.
array
(
im
)
sample
[
'image'
]
=
im
return
sample
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录