반응형
Notice
Recent Posts
Recent Comments
Link
관리 메뉴

bro's coding

matplotlib.흑백이미지 만들기 본문

[IT]/python.matplotlib

matplotlib.흑백이미지 만들기

givemebro 2020. 3. 30. 18:13
반응형
import matplotlib.pyplot as plt
img=plt.imread('제목 없음.png')
plt.imshow(img.mean(axis=2),cmap='gray',vmin=0,vmax=1)
plt.colorbar()

반응형

'[IT] > python.matplotlib' 카테고리의 다른 글

matplotlib.subplot(그래프 여러개 그리기 1)  (0) 2020.04.03
matplotlib.contourf(등고선 그리기 2)  (0) 2020.04.03
matplotlib.contour(등고선 그리기 1)  (0) 2020.04.02
matplotlib.브로드캐스팅 이용 red*2  (0) 2020.03.30
matplotlib.subplot  (0) 2020.03.27
matplotlib.plot  (0) 2020.03.27
matplotlib.scatter plot  (0) 2020.03.27
그래프 그리기  (0) 2020.03.25
Comments