PIL报错:TypeError: Cannot handle this data type: (1, 1, 3), <f8

  • Post author:
  • Post category:其他




PIL报错:TypeError: Cannot handle this data type: (1, 1, 3), <f8

如题。

使用PIL的

Image.fromarray(your numpy array)

报以上错误

解决方法:

import numpy as np


Image.fromarray(np.uint8(your numpy array))

即可.



版权声明:本文为swy_swy_swy原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。