这是我的一行代码:
cam_gb = Image.fromarray(cam_gb)
字符串
这里,cam_gb
的类型是numpy.ndarray
,dtype是float64
,形状是(3, 224, 224)
。所以当我运行这个时,我得到一个错误:
File "\site-packages\PIL\Image.py", line 3073, in fromarray
raise TypeError(msg) from e
TypeError: Cannot handle this data type: (1, 1, 224), <f8
型
即使我把cam_gb
从形状(3, 224, 224)
转置到(224, 224, 3)
,我也会得到同样的错误。
我也试过:
cam_gb = Image.fromarray(cam_gb.astype(np.uint8))
型
我得到了这个错误:
File "\lib\site-packages\PIL\Image.py", line 3073, in fromarray
raise TypeError(msg) from e
TypeError: Cannot handle this data type: (1, 1, 224), |u1
型
我也试过:
cam_gb = Image.fromarray((cam_gb * 255).astype(np.uint8))
型
但得到了这个错误:
File "\lib\site-packages\PIL\Image.py", line 3073, in fromarray
raise TypeError(msg) from e
TypeError: Cannot handle this data type: (1, 1, 224), |u1
型
请帮帮忙谢谢
我想试试:
cam_gb_on_image = Image.alpha_composite(original_image, cam_gb)
型
1条答案
按热度按时间cotxawn71#
你需要让你的数组具有形状(224,224,3),并且是
dtype=np.uint8
,以便PIL能够将其理解为RGB图像:字符串
的数据
所以,如果
cam_gb
的形状是(3,244,244),你可能需要:型