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.
