Answers for "pil image to grayscale"

3

imshow grayscale

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

python pil to greyscale

#PIL image
img2 = img.convert('L')
Posted by: Guest on February-06-2021
0

pillow rgb to grayscale

Image.open(path).convert('LA')
Posted by: Guest on March-21-2021

Python Answers by Framework

Browse Popular Code Answers by Language