Answers for "numpy to pillow image"

9

ndarray to pil image

from PIL import Image
image_from_array = Image.fromarray(nd_array)
Posted by: Guest on July-28-2020
2

pil image from numpy

from PIL import Image

PIL_image = Image.fromarray(numpy_image.astype('uint8'), 'RGB')
Posted by: Guest on October-04-2020
4

pil image to numpy

>>> pix = numpy.array(pic)
Posted by: Guest on June-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language