Python Numpy - 图像数组 - 重新排序行

时间:2015-02-27 16:43:13

标签: python arrays image numpy python-imaging-library

我想重新排序图像的行。 是否可以这样做。

理想情况下,我希望将每行放置到最近的具有最近像素数量的相邻行。 我正试图解决一个神秘的难题。

它混乱的图像行应该是一些文字。 我还不知道他们用来加密的算法,因此从上面开始就是理想的。

欢呼任何帮助,欢呼。

a = Image.open("NEW.png")
a = numpy.array(a)

#re order the rows here

#save sorted image and display
a = Image.fromarray(a)
a.save("SORTED.png")
#a.show()

0 个答案:

没有答案