PIL有九种不同模式: 1,L,P,RGB,RGBA,CMYK,YCbCr,I,F
为二值图像,非黑即白。每个像素用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()
为灰度图像,每个像素用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()
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()