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

แอนิเมชั่นพร้อมเส้นขอบใน matplotlib


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

ขั้นตอน

  • กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย

  • สร้างข้อมูลสำหรับแผนภาพเส้นชั้นความสูง

  • สร้างร่างและชุดแผนย่อย

  • สร้างแอนิเมชั่นด้วยการเรียกใช้ฟังก์ชัน *animate* . ซ้ำๆ โดยที่ เคลื่อนไหว() วิธีการเปลี่ยนจุดข้อมูลรูปร่าง

  • หากต้องการแสดงรูป ให้ใช้ แสดง() วิธีการ

ตัวอย่าง

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

# Set the figure size
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True

# Random data for the contour plot
data = np.random.randn(800).reshape(10, 10, 8)

# Create a figure and a set of subplots
fig, ax = plt.subplots()

# Method to change the contour data points
def animate(i):
    ax.clear()
    ax.contourf(data[:, :, i], cmap='plasma')

# Call animate method
ani = animation.FuncAnimation(fig, animate, 5, interval=50, blit=False)

# Display the plot
plt.show()

ผลลัพธ์

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

แอนิเมชั่นพร้อมเส้นขอบใน matplotlib