Python 官方文档:入门教程 => 点击学习
问题: 将图像所表示的矩阵转换为图像并保存为 png 格式时报错: OSError: cannot write mode F as PNG,报错信息如下: 原因分析: 这里的 mode F 意思是图像中浮点类型的像素值,原因是我代码中的
问题:
将图像所表示的矩阵转换为图像并保存为 png 格式时报错: OSError: cannot write mode F as PNG,报错信息如下:
原因分析:
这里的 mode F 意思是图像中浮点类型的像素值,原因是我代码中的 img 数组是 float 类型的,而图像中每个像素的值应该是 0-255(uint8 类型)。
解决办法:
将 img 矩阵类型转换为 uint8 类型。
添加如下代码:
import numpy as npimg = img.astype(np.uint8)
参考链接: python imaging library - PIL cannot write mode F to jpeg - Stack Overflow
来源地址:https://blog.csdn.net/weixin_44042453/article/details/127473478
--结束END--
本文标题: 【解决】OSError: cannot write mode F as PNG
本文链接: https://lsjlt.com/news/396533.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0