Python 官方文档:入门教程 => 点击学习
Image.fromarray() 方法有两个参数: obj (numpy.ndarray): 一个二维numpy数组, 表示要转换为图像的数组。mode (str): 一个字符串, 表示输出图像的模
Image.fromarray() 方法有两个参数:
from PIL import Imageimport numpy as np#创建一个3*3的数组arr=np.array([[1,2,3],[4,5,6],[7,8,9]])#将数组转换为灰度图像img=Image.fromarray(arr,mode='L')img.show()
常用的模式有 “1”, “L”, “RGB”, “RGBA”, “CMYK”, “YCbCr”, “LAB”, “HSV”, “I”, “F”。
来源地址:https://blog.csdn.net/weixin_44242365/article/details/128657086
--结束END--
本文标题: Image.fromarray()详细用法
本文链接: https://lsjlt.com/news/401102.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