发布时间:2024-04-13 09:01
参考: 在matplotlib中动态更新图
import time
import matplotlib.pyplot as plt
import numpy as np
from numpy.random import rand
if __name__ == \'__main__\':
# Enable interactive mode.
plt.ion()
# Create a figure and a set of subplots.
figure, ax = plt.subplots()
# return AxesImage object for using.
lines, = ax.plot([], [])
ax.set_autoscaley_on(True)
# ax.set_xlim(min_x, max_x)
ax.grid()
for n in range(600):
# A template of data generate...
xdata = np.arange(128)
ydata = rand(128)
# update x, y data
lines.set_xdata(xdata)
lines.set_ydata(ydata)
#Need both of these in order to rescale
ax.relim()
ax.autoscale_view()
# draw and flush the figure .
figure.canvas.draw()
figure.canvas.flush_events()
time.sleep(0.01)
import time
import matplotlib.pyplot as plt
import numpy as np
from numpy.random import rand
if __name__ == \'__main__\':
imshape = (64,64,3)
imdata = np.zeros(imshape)
# Enable interactive mode.
plt.ion()
# Create a figure and a set of subplots.
figure, ax = plt.subplots()
# return AxesImage object for using.
im = ax.imshow(imdata)
for n in range(600):
# A template of data generate...
imdata = rand(*imshape)
# update image data
im.set_data(imdata)
# draw and flush the figure .
figure.canvas.draw()
figure.canvas.flush_events()
time.sleep(0.01)
如果对你有帮助, 记得点个赞哦o( ̄▽ ̄)ブ
《MATLAB 神经网络43个案例分析》:第3章 遗传算法优化BP神经网络——非线性函数拟合
Python在各领域技术应用(地球科学、气象、机器学习、海洋等)
FPGA刷题P4:使用8-3优先编码器实现16-4优先编码器、 使用3-8译码器实现全减器、 实现3-8译码器、使用3-8译码器实现逻辑函数、数据选择器实现逻辑电路
SpringBoot接口 - API接口有哪些不安全的因素?如何对接口进行签名?
【SpringCloud】10-Nacos服务注册与配置中心
四、 《云原生 | docker篇》dockerfile构建tomcat镜像