Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

การสร้างแอนิเมชั่น 3 มิติโดยใช้ matplotlib


ในการสร้างภาพเคลื่อนไหว 3 มิติโดยใช้ matplotlib เราสามารถทำตามขั้นตอนต่อไปนี้ -

  • นำเข้าแพ็คเกจที่จำเป็น สำหรับแอนิเมชั่น 3 มิติ คุณต้องนำเข้า Axes3D จาก mpl_toolkits.mplot3d และ matplotlib.animation .
  • กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
  • สร้าง t, x, y และจุดข้อมูลโดยใช้ numpy
  • สร้างตัวเลขใหม่หรือเปิดใช้งานตัวเลขที่มีอยู่
  • รับอินสแตนซ์ของแกน 3 มิติ
  • ปิดแกน
  • พล็อตบรรทัดด้วยข้อมูล
  • สร้างแอนิเมชั่นโดยการเรียกใช้ฟังก์ชันซ้ำๆ *เคลื่อนไหว *.
  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
from mpl_toolkits.mplot3d import Axes3D

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

def animate(num, data, line):
   colors = ['#1f77b4', '#ff7f0e', '#2ca02c', '#d62728', '#9467bd', '#8c564b', '#e377c2',   '#7f7f7f', '#bcbd22', '#17becf']
   line.set_color(colors[num % len(colors)])
   line.set_alpha(0.7)
   line.set_data(data[0:2, :num])
   line.set_3d_properties(data[2, :num])
   return line

t = np.arange(0, 20, 0.2)
x = np.cos(t) - 1
y = 1 / 2 * (np.cos(2 * t) - 1)
data = np.array([x, y, t])
N = len(t)
fig = plt.figure()
ax = Axes3D(fig)
ax.axis('off')

line, = plt.plot(data[0], data[1], data[2], lw=7, c='red')
line_ani = animation.FuncAnimation(fig, animate, frames=N, fargs=(data, line), interval=50, blit=False)

plt.show()

ผลลัพธ์

มันจะสร้างผลลัพธ์ต่อไปนี้

การสร้างแอนิเมชั่น 3 มิติโดยใช้ matplotlib การสร้างแอนิเมชั่น 3 มิติโดยใช้ matplotlib