使用PIL和tkinter,我试图在图像的pixelMatrix中进行一些操作,如:
start = Image.open("gua.jpg")
sta = start.load()
i,j = start.size
current = np.zeros((i,j,3))
for ix in range(i):
for jx in range(j):
current[ix,jx] = [elem*0.5 for elem in sta[ix,jx]]
current = np.asarray(current)
current = Image.fromarray(current, "RGB")
out = ImageTk.PhotoImage(current)
panel.configure(image = out)
panel.image = out
但即使我只是将图片的pixelMatrix中的信息传递给我的矩阵(current[ix,jx] = sta[ix,jx]
),我的结果也是随机的,我做错了什么?
谢谢!
P.S:我可以毫无问题地做out = ImageTk.PhotoImage(start)
。
答案 0 :(得分:1)
您需要指定数组的dtype
为np.uint8
:
current = np.zeros((i,j,3),dtype=np.uint8)
如果PIL在数组上使用.tobytes()
方法时未指定此项,则会获取对"RGB"
没有意义的数据,因为它是针对浮点数的。
另请注意,fromarray
逐行获取数据,因此高度需要是数组的第一个维度,您可以通过在将transpose
传递给{{1 }}:
fromarray