Answers for "how to use pil to convert to numpy array"

9

ndarray to pil image

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

pil image to numpy

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

Code answers related to "how to use pil to convert to numpy array"

Python Answers by Framework

Browse Popular Code Answers by Language