matplotlib
이미지 조작
수색…
이미지 열기
하기 matplotlib가 포함 image
이미지 조작 모듈
import matplotlib.image as mpimg
import matplotlib.pyplot as plt
이미지는 imread
함수로 파일 ( .png
에만 해당)에서 읽습니다.
img = mpimg.imread('my_image.png')
imshow
함수에 의해 렌더링됩니다.
plt.imshow(img)
Stack Overflow 로고를 플롯 해보자.
import matplotlib.image as mpimg
import matplotlib.pyplot as plt
img = mpimg.imread('so-logo.png')
plt.imshow(img)
plt.show()
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow