美文网首页
图片操作

图片操作

作者: 阿发贝塔伽马 | 来源:发表于2017-09-29 17:40 被阅读0次
from PIL import Image
I = Image.open('1111.jpg')
#I.show()
# RGB 转换为灰度图
L = I.convert('L')
im_array = np.array(L)
print im_array
print im_array.shape
L.show()
from PIL import Image
import matplotlib.pyplot as plt
img=Image.open('1111.jpg')
im_array = np.array(img)
print im_array
plt.figure("dog")
plt.imshow(img)
plt.show()

相关文章

网友评论

      本文标题:图片操作

      本文链接:https://www.haomeiwen.com/subject/ujaiextx.html