Python 使用skimage实现将彩色图像转换为灰度图像并保存
Posted 海轰Pro
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 使用skimage实现将彩色图像转换为灰度图像并保存相关的知识,希望对你有一定的参考价值。
Python实现
在做课程作业的时候
需要使用到一些灰度图片
但是Matlab卸载了 以前的一些测试图片也没有了
就利用python简单的实现一下
代码如下:
import matplotlib.pyplot as plt
from skimage import data,io
from skimage.color import rgb2gray
# 读取原图片
original = io.imread("img/3.jpeg")
grayscale = rgb2gray(original)
print(original.shape)
fig, axes = plt.subplots(1, 2, figsize=(8, 4))
ax = axes.ravel()
ax[0].imshow(original)
ax[0].set_title("Original")
ax[1].imshow(grayscale, cmap=plt.cm.gray)
ax[1].set_title("Grayscale")
# 输出灰度图片
i_name = "test3.jpg"
io.imsave(i_name, grayscale)
fig.tight_layout()
plt.show()
结果:
以上是关于Python 使用skimage实现将彩色图像转换为灰度图像并保存的主要内容,如果未能解决你的问题,请参考以下文章
skimage:为啥 skimage.color 中的 rgb2gray 会产生彩色图像?
python库skimage 将针对灰度图像的滤波器用于RGB图像 逐通道滤波;转换为HSV图像滤波