本文主要是介绍PIL报错:TypeError: Cannot handle this data type: (1, 1, 3), <f8,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
PIL报错:TypeError: Cannot handle this data type: (1, 1, 3), <f8
如题。
使用PIL的
Image.fromarray(your numpy array)
报以上错误
解决方法:
import numpy as npImage.fromarray(np.uint8(your numpy array))
即可.
这篇关于PIL报错:TypeError: Cannot handle this data type: (1, 1, 3), <f8的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!