Python 간단 한 그 레이스 케 일 그림 표시

import matplotlib.pyplot as plt # plt       
import matplotlib.image as mpimg # mpimg       
import numpy as np
filename = r'C:\Users\Administrator\Desktop\python\test\test0.jpg'
lena = mpimg.imread(filename) #               lena.png
#    lena        np.array  ,          
lena.shape #(512, 512, 3)

plt.imshow(lena,cmap='gray') #       
plt.axis('off') #       
plt.show()

#%%               
from PIL import Image
import numpy as np
 
 
def test_pil():
 
    #    
    im = Image.open(filename)
    #    
    im.show()
 
    #       
    im_gray = im.convert("L")
    im_gray.show()
 
    #    
    im_gray.save("image_gray.jpg")
 
    return
test_pil()

좋은 웹페이지 즐겨찾기