我是python编程的新手,最近正在研究一个与运动检测相关的项目后检测到运动我的python脚本打印意味着两帧的差异并检测运动并实时打印这些值
print mean
0.655186631944
0.305004340278
0.927682291667
0.220682508681
0.470944010417
0.521220703125
0.789696180556
0.316413845486
0.490614149306
我已经在这些教程的帮助下写下了一些代码(这里我省略了代码的上半部分)
if mean >= threshold:
counter = counter+1
#print "Motion Detected"
print mean
fig = plt.figure()
ax1 = fig.add_subplot(1,1,1)
def animate(i):
ax1.clear()
ax1.plot(counter,mean)
ani = animation.FuncAnimaton(fig,animate, interval=1000)
plt.show()
但是这段代码对我不起作用我想绘制一个具有时间函数的实时图表 请帮忙。