Python Forum
show grayscale image using matplotlib
Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
show grayscale image using matplotlib
#1

Hello guys,

Now I used PIL to convert my image from RGB to Grayscale, and then I use the matplotlib to show the coordinate value and greyscale value of every pixel on image. The problem is the image shown on the screen doesn't looks like a greyscale image but it can successfully show me the pixel coordinate value and greyscale value of the image. I don't know why it happens.

from PIL import Image
import matplotlib.image as mpimg
import matplotlib.pyplot as plt
img=Image.open('beam.jpg').convert('L')
img.save('gray_beam.jpg')
im=mpimg.imread('gray_beam.jpg')
a=plt.imshow(im)
plt.show(a)
Reply
#2
from PIL import Image
import matplotlib.image as mpimg
import matplotlib.pyplot as plt

img=Image.open('beam.jpg').convert('L')
plt.imshow(img, cmap='gray')
plt.show()
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  PIL Image im.show() no show! Pedroski55 2 959 Sep-12-2022, 10:19 PM
Last Post: Pedroski55
  PIL Image im.show() no show! Pedroski55 6 4,887 Feb-08-2022, 06:32 AM
Last Post: Pedroski55
  Converting an RGBA image to Grayscale and Binary Joni_Engr 3 4,629 Aug-23-2021, 11:54 AM
Last Post: Pedroski55
  Matplotlib: How do I convert Dates from Excel to use in Matplotlib JaneTan 1 3,224 Mar-11-2021, 10:52 AM
Last Post: buran
  matplotlib.pyplot.show Alienspecimen 2 2,232 Feb-27-2021, 02:32 AM
Last Post: snippsat
  saving only one line of a figure as an image (python matplotlib) nitrochloric 0 2,014 Nov-23-2020, 01:41 PM
Last Post: nitrochloric
  Maximas in grayscale image yliats 2 2,019 Aug-13-2020, 01:11 PM
Last Post: yliats
  Show graphs in matplotlib from a sql query? ScaleMan 1 1,855 Feb-06-2020, 05:47 PM
Last Post: ScaleMan
  Convert 400 grayscale pixels into RGB python420 1 2,449 Jan-02-2020, 04:19 PM
Last Post: Clunk_Head
  cv2 show image mcgrim 4 10,085 Nov-04-2019, 11:41 PM
Last Post: MckJohan

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020