Answers for "python pillow numpy array to 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

Code answers related to "python pillow numpy array to image"

Python Answers by Framework

Browse Popular Code Answers by Language