我正在尝试加载图像,对其进行转换并打印矩阵。我有以下代码;
im = Image.open("1.jpg")
im = im.convert("L")
print im
当我打印“我”时,我得到了这个<PIL.Image.Image image mode=L size=92x112 at 0x2F905F8>
。我怎样才能看到图像矩阵?
我正在尝试加载图像,对其进行转换并打印矩阵。我有以下代码;
im = Image.open("1.jpg")
im = im.convert("L")
print im
当我打印“我”时,我得到了这个<PIL.Image.Image image mode=L size=92x112 at 0x2F905F8>
。我怎样才能看到图像矩阵?
You can use numpy.asarray()
:
>>> import Image, numpy
>>> numpy.asarray(Image.open('1.jpg').convert('L'))
Function load will give you access to pixels like this:
b = im.load()
print b[x,y]
b[x,y] = 128 # or a tupple if you use another color mode
im.show()
将在弹出窗口中显示它。
im.tostring()
将图像转储为字节字符串。
im.save()
将其保存到文件中。