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

matplotlib에서 애니메이션 이미지 행렬을 그리는 방법은 무엇입니까?

<시간/>

matplotlib에서 애니메이션 이미지 매트릭스를 플롯하려면 다음 단계를 수행할 수 있습니다.

단계

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

  • Figure와 서브플롯 세트를 생성합니다.

  • *update* 함수를 반복적으로 호출하여 애니메이션 만들기 .

  • 업데이트 내부 방법을 사용하여 6×6 차원의 행렬을 만들고 데이터를 2D 일반 래스터와 같은 이미지로 표시합니다.

  • set_axis_off()를 사용하여 축을 끕니다. .

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

예시

from matplotlib.animation import FuncAnimation
import matplotlib.pyplot as plt
import numpy as np

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

fig, ax = plt.subplots()

def update(i):
    im_normed = np.random.rand(6, 6)
    ax.imshow(im_normed)
    ax.set_axis_off()

anim = FuncAnimation(fig, update, frames=20, interval=50)

plt.show()

출력

다음 출력을 생성합니다 -

matplotlib에서 애니메이션 이미지 행렬을 그리는 방법은 무엇입니까?