网站首页 美食营养 游戏数码 手工爱好 生活家居 健康养生 运动户外 职场理财 情感交际 母婴教育 时尚美容

python 中如何将RGB图像模式转为灰度

时间:2024-10-11 20:37:48

1、安装pil扩展,如果没有安装。pip install pillow

2、安装后,直接引用from PIL import Image

3、img = Image.open(r'D:/cat.jpg')

4、grey = img.convert('L')参数L,代表灰度

5、grey.save('D:/grey.jpg')将转换后的灰度图像对象存储。

python 中如何将RGB图像模式转为灰度
© 2025 小知经验
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com