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

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

如题。
使用PIL的

Image.fromarray(your numpy array)

报以上错误
解决方法:

import numpy as np


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

即可.

你可能感兴趣的:(python,python,图像处理)