Как получить объект изображения из массива в Python
>>> im = PIL.Image.fromarray(numpy.uint8(I))
#where I is your array form of the image
Yucky Yacare
>>> im = PIL.Image.fromarray(numpy.uint8(I))
#where I is your array form of the image