我正在尝试使用 pyplot 动画实时显示 CCD 相机捕获的帧。我编写了一个简短的 python 脚本来测试它,虽然它可以工作,但它的运行不规律。它会快速更新十几个动画帧,然后暂停一秒钟,然后再次更新,然后再次暂停,以此类推。我想让它连续流畅地更新情节,但我不确定我哪里出错了。
我知道这不是调用相机帧缓冲区的部分。我测试了只是在循环中调用它并且它从未减慢速度,所以我认为它在动画帧的实际处理中的某个地方。
我的代码如下:
import numpy as np
from matplotlib import pyplot as plt
from matplotlib import animation
import Pixis100
import time
# First set up the figure, the axis, and the plot element we want to animate
fig = plt.figure()
ax = fig.add_subplot(111)
# Create ccd object
ccd = Pixis100.device()
ccd.snapshot()
ccd.focusStart()
# focusStart() tells the camera to start putting captured frames into the buffer
line, = ax.plot(ccd.getFrame()[:,2:].sum(axis=0)[::-1],'b-')
# getFrame() makes a call to the CCD frame buffer and retrieves the most recent frame
# animation function
def update(data):
line.set_ydata(data)
return line,
def data_gen():
while True: yield ccd.getFrame()[:,2:].sum(axis=0)[::-1]
# call the animator
anim = animation.FuncAnimation(fig, update, data_gen,interval=10,blit=True)
plt.show()
ccd.focusStop()
# focusStop() just tells the camera to stop capturing frames
作为参考, ccd.getFrame()[:,2:].sum(axis=0)[::-1] 返回一个 1x1338 整数数组。我认为这对于动画一次处理来说不会太多。