메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
그림 이미지 데모 #
이것은 Axes 객체 없이 Figure에 직접 이미지를 배치하는 것을 보여줍니다.
import numpy as np
import matplotlib.pyplot as plt
fig = plt.figure()
Z = np.arange(10000).reshape((100, 100))
Z[:, 50:] = 1
im1 = fig.figimage(Z, xo=50, yo=0, origin='lower')
im2 = fig.figimage(Z, xo=100, yo=100, alpha=.8, origin='lower')
plt.show()
참조
다음 함수, 메서드, 클래스 및 모듈의 사용이 이 예제에 표시됩니다.