Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Matplotlib – Python에서 이미지 배경 위에 플롯

<시간/>

이미지 배경 위에 플롯하려면 다음 단계를 수행할 수 있습니다.

  • 파일에서 배열로 이미지를 읽습니다.
  • 그림(fig)을 만들고 범위가 [0, 300, 0, 300]인 서브플롯(ax) 세트를 추가합니다.
  • 범위(300)의 x배열을 만듭니다.
  • plot()를 사용하여 플롯 x linestyle=dotted 메서드 , 선폭=2 , 및 색상=빨간색
  • 그림을 표시하려면 show()를 사용하세요. 방법.

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
im = plt.imread("bird.jpg")
fig, ax = plt.subplots()
im = ax.imshow(im, extent=[0, 300, 0, 300])
x = np.array(range(300))
ax.plot(x, x, ls='dotted', linewidth=2, color='red')
plt.show()

출력

Matplotlib – Python에서 이미지 배경 위에 플롯