pil image from numpy

31

from PIL import Image
image_from_array = Image.fromarray(nd_array)
from PIL import Image

PIL_image = Image.fromarray(numpy_image.astype('uint8'), 'RGB')
>>> pix = numpy.array(pic)

Comments

Submit
0 Comments