Answers for "python imshow grayscale"

3

imshow grayscale

plt.imshow(im, cmap='gray')
Posted by: Guest on July-31-2020
1

python image to grayscale

from PIL import Image
Image.open("image.jpg").convert("L").save("result.jpg")
Posted by: Guest on January-01-2022

Python Answers by Framework

Browse Popular Code Answers by Language