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

플롯(Matplotlib)에서 사용자 정의 png 이미지 마커를 사용하는 방법은 무엇입니까?

<시간/>

사용자 정의 png 또는 jpg, 즉 이미지를 플롯의 마커로 사용하려면 다음 단계를 수행할 수 있습니다. -

  • Figure 크기를 설정하고 서브플롯 사이와 주변의 패딩을 조정합니다.

  • 이미지 디렉토리를 저장할 경로 목록을 만듭니다.

  • 포인트 목록(x 및 y)을 만드십시오.

  • subplot() 사용 방법으로 그림과 서브플롯 세트를 생성합니다.

  • 점 대신 이미지를 표시하려면 압축된 x, y 및 경로를 반복합니다.

  • AnnotationBbox() 인스턴스화 이미지 및 (x, y) 포인트로.

  • xticks 입력 및 yticks 두 축 모두에서.

  • 그림을 표시하려면 show()를 사용하세요. 방법.

import matplotlib.pyplot as plt
from matplotlib.offsetbox import OffsetImage, AnnotationBbox

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

def getImage(path):
   return OffsetImage(plt.imread(path, format="jpg"), zoom=.1)

paths = ['globe.jpg', 'settings.jpg', 'settings.jpg', 'globe.jpg']
x = [8, 4, 3, 6]
y = [5, 3, 4, 7]
fig, ax = plt.subplots()
for x0, y0, path in zip(x, y, paths):
   ab = AnnotationBbox(getImage(path), (x0, y0), frameon=False)
   ax.add_artist(ab)
plt.xticks(range(10))
plt.yticks(range(10))
plt.show()

출력

플롯(Matplotlib)에서 사용자 정의 png 이미지 마커를 사용하는 방법은 무엇입니까?