Python:如何保存rgb float图像?

时间:2015-12-22 07:47:48

标签: python image python-2.7 python-imaging-library

我尝试将RGB浮动图像保存到tiff文件,但我找不到办法。

from PIL import Image
imgf = np.ones((5,5,3),dtype = np.float32)
img_to_save = Image.fromarray(imgf) #fails..
img_to_save.save('img.tiff')

或者,matplotlib.pyplot imsave将我的浮动更改为整数。

我该怎么做?

0 个答案:

没有答案