python TypeError:Cannot handle this data type:(1,1,224),< f8 using PIL Image.fromarray()

uurv41yg  于 2024-01-05  发布在  Python
关注(0)|答案(1)|浏览(213)

这是我的一行代码:

  1. cam_gb = Image.fromarray(cam_gb)

字符串
这里,cam_gb的类型是numpy.ndarray,dtype是float64,形状是(3, 224, 224)。所以当我运行这个时,我得到一个错误:

  1. File "\site-packages\PIL\Image.py", line 3073, in fromarray
  2. raise TypeError(msg) from e
  3. TypeError: Cannot handle this data type: (1, 1, 224), <f8


即使我把cam_gb从形状(3, 224, 224)转置到(224, 224, 3),我也会得到同样的错误。
我也试过:

  1. cam_gb = Image.fromarray(cam_gb.astype(np.uint8))


我得到了这个错误:

  1. File "\lib\site-packages\PIL\Image.py", line 3073, in fromarray
  2. raise TypeError(msg) from e
  3. TypeError: Cannot handle this data type: (1, 1, 224), |u1


我也试过:

  1. cam_gb = Image.fromarray((cam_gb * 255).astype(np.uint8))


但得到了这个错误:

  1. File "\lib\site-packages\PIL\Image.py", line 3073, in fromarray
  2. raise TypeError(msg) from e
  3. TypeError: Cannot handle this data type: (1, 1, 224), |u1


请帮帮忙谢谢
我想试试:

  1. cam_gb_on_image = Image.alpha_composite(original_image, cam_gb)

cotxawn7

cotxawn71#

你需要让你的数组具有形状(224,224,3),并且是dtype=np.uint8,以便PIL能够将其理解为RGB图像:

  1. from PIL import Image
  2. import numpy as np
  3. # Make array (224, 224, 3) of rgb(255,128,0), i.e. orange
  4. a = np.full((224,224,3), [255,128,0], np.uint8)
  5. # Make PIL Image from Numpy array
  6. Image.fromarray(a).save('result.png')

字符串


的数据
所以,如果cam_gb的形状是(3,244,244),你可能需要:

  1. a = np.transpose(cam_gb, (1, 2, 0))

展开查看全部

相关问题