Answers for "how to display an array as grayscale image in python using matplotlib"

2

python image to grayscale

from PIL import Image
img = Image.open("image.jpg")
img.convert("L").save("result.jpg")
Posted by: Guest on March-18-2021

Code answers related to "how to display an array as grayscale image in python using matplotlib"

Python Answers by Framework

Browse Popular Code Answers by Language