91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用numpngw與matplotlib怎么生成一個png動畫

發布時間:2021-01-25 15:58:01 來源:億速云 閱讀:186 作者:Leah 欄目:開發技術

今天就跟大家聊聊有關使用numpngw與matplotlib怎么生成一個png動畫,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

numpngw概述

numpngw庫可生成PNG靜態圖像和PNG動畫。

  • 通過write_png函數可以將 numpy保存為PNG 文件。

  • 通過 write_apng 函數可以將數組序列保存為 PNG 動畫(APNG)文件 。

  • 通過AnimatedPNGWriter類可以將Matplotlib 保存為PNG動畫文件。

numpngw庫的依賴包是numpy和setuptools。

使用numpngw和matplotlib生成png動畫

numpngw+matplotlib實現png動畫

import numpy as np
from matplotlib import pyplot as plt
import matplotlib.animation as animation
from numpngw import AnimatedPNGWriter

t = np.linspace(0, 6, 100)
x = 16 * np.sin(t) ** 3
y = 13 * np.cos(t) - 5 * np.cos(2 * t) - 2 * np.cos(3 * t) - np.cos(4 * t)
data=[i for i in zip(x,y)]

def plot_love(data):
  x, y = data
  plt.scatter(x, y, 60, c="r", alpha=0.7, marker=r"$\heartsuit$")
fig=plt.figure(figsize=(5, 3), dpi=100)
plt.axis("off")

writer = AnimatedPNGWriter(fps=12)
animator = animation.FuncAnimation(fig, plot_love, frames=data)
animator.save("love.png", writer=writer)

使用matplotlib和pillow實現gif動畫

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

t = np.linspace(0, 6, 100)
x = 16 * np.sin(t) ** 3
y = 13 * np.cos(t) - 5 * np.cos(2 * t) - 2 * np.cos(3 * t) - np.cos(4 * t)
data=[i for i in zip(x,y)]

def plot_love(data):
  x, y = data
  plt.scatter(x, y, 60, c="r", alpha=0.7, marker=r"$\heartsuit$")

fig=plt.figure(figsize=(5, 3), dpi=100)
plt.axis("off")
animator = animation.FuncAnimation(fig, plot_love, frames=data, interval=80)
animator.save("love.gif", writer='pillow')

關鍵代碼解讀

# 導入AnimatedPNGWriter
from numpngw import AnimatedPNGWriter

# 初始化AnimatedPNGWriter
writer = AnimatedPNGWriter(fps=12)
# 將save函數中的writer參數設為AnimatedPNGWriter實例
animator.save("love.png", writer=writer)

看完上述內容,你們對使用numpngw與matplotlib怎么生成一個png動畫有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

科技| 青神县| 涿州市| 察隅县| 勃利县| 来凤县| 醴陵市| 宜兴市| 临朐县| 天峨县| 牟定县| 外汇| 广德县| 噶尔县| 育儿| 精河县| 宜兰市| 正定县| 壶关县| 抚松县| 扎赉特旗| 嘉兴市| 丽水市| 宁陵县| 福建省| 桦川县| 石景山区| 绿春县| 淮北市| 紫云| 崇义县| 克什克腾旗| 达日县| 三明市| 神木县| 揭东县| 台东市| 鄢陵县| 绥阳县| 磴口县| 永安市|