Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
X2Paddle
提交
d740acce
X
X2Paddle
项目概览
PaddlePaddle
/
X2Paddle
大约 1 年 前同步成功
通知
328
Star
698
Fork
167
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
26
列表
看板
标记
里程碑
合并请求
4
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
X2Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
26
Issue
26
列表
看板
标记
里程碑
合并请求
4
合并请求
4
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
d740acce
编写于
10月 09, 2022
作者:
W
wjj19950828
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fixed ToPILImage
上级
270c5dc0
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
17 addition
and
16 deletion
+17
-16
docs/pytorch_project_convertor/API_docs/vision/torchvision.transforms.ToPILImage.md
...rtor/API_docs/vision/torchvision.transforms.ToPILImage.md
+17
-16
未找到文件。
docs/pytorch_project_convertor/API_docs/vision/torchvision.transforms.ToPILImage.md
浏览文件 @
d740acce
...
@@ -18,7 +18,8 @@ from paddle.vision.transforms import functional as F
...
@@ -18,7 +18,8 @@ from paddle.vision.transforms import functional as F
class
ToPILImage
(
BaseTransform
):
class
ToPILImage
(
BaseTransform
):
def
__init__
(
self
,
mode
=
None
,
keys
=
None
):
def
__init__
(
self
,
mode
=
None
,
keys
=
None
):
super
(
ToTensor
,
self
).
__init__
(
keys
)
super
(
ToPILImage
,
self
).
__init__
(
keys
)
self
.
mode
=
mode
def
_apply_image
(
self
,
pic
):
def
_apply_image
(
self
,
pic
):
"""
"""
...
@@ -53,7 +54,7 @@ class ToPILImage(BaseTransform):
...
@@ -53,7 +54,7 @@ class ToPILImage(BaseTransform):
npimg
=
pic
npimg
=
pic
if
isinstance
(
pic
,
paddle
.
Tensor
)
and
"float"
in
str
(
pic
.
numpy
(
if
isinstance
(
pic
,
paddle
.
Tensor
)
and
"float"
in
str
(
pic
.
numpy
(
).
dtype
)
and
mode
!=
'F'
:
).
dtype
)
and
self
.
mode
!=
'F'
:
pic
=
pic
.
mul
(
255
).
byte
()
pic
=
pic
.
mul
(
255
).
byte
()
if
isinstance
(
pic
,
paddle
.
Tensor
):
if
isinstance
(
pic
,
paddle
.
Tensor
):
npimg
=
np
.
transpose
(
pic
.
numpy
(),
(
1
,
2
,
0
))
npimg
=
np
.
transpose
(
pic
.
numpy
(),
(
1
,
2
,
0
))
...
@@ -74,40 +75,40 @@ class ToPILImage(BaseTransform):
...
@@ -74,40 +75,40 @@ class ToPILImage(BaseTransform):
expected_mode
=
'I'
expected_mode
=
'I'
elif
npimg
.
dtype
==
np
.
float32
:
elif
npimg
.
dtype
==
np
.
float32
:
expected_mode
=
'F'
expected_mode
=
'F'
if
mode
is
not
None
and
mode
!=
expected_mode
:
if
self
.
mode
is
not
None
and
self
.
mode
!=
expected_mode
:
raise
ValueError
(
raise
ValueError
(
"Incorrect mode ({}) supplied for input type {}. Should be {}"
"Incorrect mode ({}) supplied for input type {}. Should be {}"
.
format
(
mode
,
np
.
dtype
,
expected_mode
))
.
format
(
self
.
mode
,
np
.
dtype
,
expected_mode
))
mode
=
expected_mode
self
.
mode
=
expected_mode
elif
npimg
.
shape
[
2
]
==
2
:
elif
npimg
.
shape
[
2
]
==
2
:
permitted_2_channel_modes
=
[
'LA'
]
permitted_2_channel_modes
=
[
'LA'
]
if
mode
is
not
None
and
mode
not
in
permitted_2_channel_modes
:
if
self
.
mode
is
not
None
and
self
.
mode
not
in
permitted_2_channel_modes
:
raise
ValueError
(
"Only modes {} are supported for 2D inputs"
.
raise
ValueError
(
"Only modes {} are supported for 2D inputs"
.
format
(
permitted_2_channel_modes
))
format
(
permitted_2_channel_modes
))
if
mode
is
None
and
npimg
.
dtype
==
np
.
uint8
:
if
self
.
mode
is
None
and
npimg
.
dtype
==
np
.
uint8
:
mode
=
'LA'
self
.
mode
=
'LA'
elif
npimg
.
shape
[
2
]
==
4
:
elif
npimg
.
shape
[
2
]
==
4
:
permitted_4_channel_modes
=
[
'RGBA'
,
'CMYK'
,
'RGBX'
]
permitted_4_channel_modes
=
[
'RGBA'
,
'CMYK'
,
'RGBX'
]
if
mode
is
not
None
and
mode
not
in
permitted_4_channel_modes
:
if
self
.
mode
is
not
None
and
self
.
mode
not
in
permitted_4_channel_modes
:
raise
ValueError
(
"Only modes {} are supported for 4D inputs"
.
raise
ValueError
(
"Only modes {} are supported for 4D inputs"
.
format
(
permitted_4_channel_modes
))
format
(
permitted_4_channel_modes
))
if
mode
is
None
and
npimg
.
dtype
==
np
.
uint8
:
if
self
.
mode
is
None
and
npimg
.
dtype
==
np
.
uint8
:
mode
=
'RGBA'
self
.
mode
=
'RGBA'
else
:
else
:
permitted_3_channel_modes
=
[
'RGB'
,
'YCbCr'
,
'HSV'
]
permitted_3_channel_modes
=
[
'RGB'
,
'YCbCr'
,
'HSV'
]
if
mode
is
not
None
and
mode
not
in
permitted_3_channel_modes
:
if
self
.
mode
is
not
None
and
self
.
mode
not
in
permitted_3_channel_modes
:
raise
ValueError
(
"Only modes {} are supported for 3D inputs"
.
raise
ValueError
(
"Only modes {} are supported for 3D inputs"
.
format
(
permitted_3_channel_modes
))
format
(
permitted_3_channel_modes
))
if
mode
is
None
and
npimg
.
dtype
==
np
.
uint8
:
if
self
.
mode
is
None
and
npimg
.
dtype
==
np
.
uint8
:
mode
=
'RGB'
self
.
mode
=
'RGB'
if
mode
is
None
:
if
self
.
mode
is
None
:
raise
TypeError
(
'Input type {} is not supported'
.
format
(
raise
TypeError
(
'Input type {} is not supported'
.
format
(
npimg
.
dtype
))
npimg
.
dtype
))
return
Image
.
fromarray
(
npimg
,
mode
=
mode
)
return
Image
.
fromarray
(
npimg
,
mode
=
self
.
mode
)
```
```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录