Python图像处理 PIL中convert(‘L‘)函数原理

img = img.convert()

PIL有九种不同模式: 1,L,P,RGB,RGBA,CMYK,YCbCr,I,F

1.img.convert(‘1’)

为二值图像,非黑即白。每个像素用8个bit表示,0表示黑,255表示白。

image = Image.open("./00000001_000.png")
image_1 = image.convert('1')
print(image_1)
fig = plt.figure()
ax = fig.subplots(1,2)
ax[0].imshow(image)
ax[1].imshow(image_1)
plt.show()

Python图像处理 PIL中convert(‘L‘)函数原理_第1张图片

2.img.convert(‘L’)

为灰度图像,每个像素用8个bit表示,0表示黑,255表示白,其他数字表示不同的灰度。

转换公式:L = R * 299/1000 + G * 587/1000+ B * 114/1000。

image = Image.open("./00000001_000.png")
image_L = image.convert('L')
print(image_L)
fig = plt.figure()
ax = fig.subplots(1,2)
ax[0].imshow(image)
ax[1].imshow(image_L)
plt.show()

Python图像处理 PIL中convert(‘L‘)函数原理_第2张图片

3.img.convert(‘RGB’)

image = Image.open("./00000001_000.png")
image_RGB = image.convert('RGB')
print(image_RGB)
fig = plt.figure()
ax = fig.subplots(1,2)
ax[0].imshow(image)
ax[1].imshow(image_RGB)
plt.show()

Python图像处理 PIL中convert(‘L‘)函数原理_第3张图片

你可能感兴趣的:(pyhon,python)