PIL and numpy - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T03:37:42Zhttp://stackoverflow.com/feeds/question/384759http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/384759/pil-and-numpy2PIL and numpyakdom2008-12-21T18:21:32Z2009-08-15T19:54:28Z
<p>Alright, I'm toying around with converting a PIL image object back and forth to a numpy array so I can do some faster pixel by pixel transformations than PIL's PixelAccess object would allow. I've figured out how to place the pixel information in a useful 3D numpy array by way of:</p>
<pre><code>pic = Image.open("foo.jpg")
pix = numpy.array(pic.getdata()).reshape(pic.size[0], pic.size[1], 3)
</code></pre>
<p>But I can't seem to figure out how to load it back into the PIL object after I've done all my awesome transforms. I'm aware of the <strong>putdata()</strong> method, but can't quite seem to get it to behave.</p>
<p>Any thoughts?</p>
http://stackoverflow.com/questions/384759/pil-and-numpy/384926#3849264Answer by dF for PIL and numpydF2008-12-21T20:46:21Z2008-12-29T11:11:48Z<p>You're not saying how exactly <code>putdata()</code> is not behaving. I'm assuming you're doing </p>
<pre><code>>>> pic.putdata(a)
Traceback (most recent call last):
File "...blablabla.../PIL/Image.py", line 1185, in putdata
self.im.putdata(data, scale, offset)
SystemError: new style getargs format but argument is not a tuple
</code></pre>
<p>This is because <code>putdata</code> expects a sequence of tuples and you're giving it a numpy array. This</p>
<pre><code>>>> data = list(tuple(pixel) for pixel in pix)
>>> pic.putdata(data)
</code></pre>
<p>will work but it is very slow. </p>
<p>As of PIL 1.1.6, the <a href="http://effbot.org/zone/pil-changes-116.htm" rel="nofollow">"proper" way to convert between images and numpy arrays</a> is simply</p>
<pre><code>>>> pix = numpy.array(pic)
</code></pre>
<p>although the resulting array is in a different format than yours (3-d array or rows/columns/rgb in this case).</p>
<p>Then, after you make your changes to the array, you should be able to do either <code>pic.putdata(pix)</code> or create a new image with <code>Image.fromarray(pix)</code>. </p>
http://stackoverflow.com/questions/384759/pil-and-numpy/1095878#10958780Answer by endolith for PIL and numpyendolith2009-07-08T02:33:17Z2009-08-15T19:54:28Z<p>Open I as an array:</p>
<pre><code>>>> I = numpy.asarray(Image.open('test.jpg'))
</code></pre>
<p>Do some stuff to I, then, convert it back to an image:</p>
<pre><code>>>> im = Image.fromarray(numpy.uint8(I))
</code></pre>
<p><a href="http://barnesc.blogspot.com/2007/09/filter-numpy-images-with-fft-python.html" rel="nofollow">Filter numpy images with FFT, Python</a></p>
<p>If you want to do it explicitly for some reason, there are pil2array() and array2pil() functions using getdata() on <a href="http://bradmontgomery.blogspot.com/2007/12/computing-correlation-coefficients-in.html" rel="nofollow">this page</a> in correlation.zip.</p>