show/hide this revision's text 3 added 47 characters in body

Open I as an array:

>>> I = numpy.asarray(Image.open('test.jpg'))

Do some stuff to I, then, convert it back to an image:

>>> im = Image.fromarray(numpy.uint8(I))

ht tp://barnesc.blogspot.com/2007/09/filter-numpy-images-with-fft-python.html

Filter numpy images with FFT, Python

If you want to do it explicitly for some reason, there are pil2array() and array2pil() functions using getdata() on this page in correlation.zip.

show/hide this revision's text 2 added 4 characters in body

Open I as an array:

>>> I = numpy.asarray(Image.open('test.jpg'))

Do some stuff to I, then, convert it back to an image:

>>> im = Image.fromarray(numpy.uint8(I))

ht tp://barnesc.blogspot.com/2007/09/filter-numpy-images-with-fft-python.html

If you want to do it explicitly for some reason, there are pil2array pil2array() and array2pil array2pil() functions using getdata() on this page in correlation.zip.

show/hide this revision's text 1

Open I as an array:

>>> I = numpy.asarray(Image.open('test.jpg'))

Do some stuff to I, then, convert it back to an image:

>>> im = Image.fromarray(numpy.uint8(I))

ht tp://barnesc.blogspot.com/2007/09/filter-numpy-images-with-fft-python.html

If you want to do it explicitly for some reason, there are pil2array and array2pil functions using getdata() on this page in correlation.zip.