d455da9aec
This namespace appears to be valid in PySide2/PyQt5 5.12+ so we may as well migrate to the newer namespace ourselves.
68 lines
1.6 KiB
Python
68 lines
1.6 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Test the speed of rapidly updating multiple plot curves
|
|
"""
|
|
|
|
## Add path to library (just for examples; you do not need this)
|
|
import initExample
|
|
|
|
|
|
from pyqtgraph.Qt import QtGui, QtCore
|
|
import numpy as np
|
|
import pyqtgraph as pg
|
|
from pyqtgraph.ptime import time
|
|
# pg.setConfigOptions(useOpenGL=True)
|
|
app = pg.mkQApp("MultiPlot Speed Test")
|
|
|
|
plot = pg.plot()
|
|
plot.setWindowTitle('pyqtgraph example: MultiPlotSpeedTest')
|
|
plot.setLabel('bottom', 'Index', units='B')
|
|
|
|
nPlots = 100
|
|
nSamples = 500
|
|
curves = []
|
|
for idx in range(nPlots):
|
|
curve = pg.PlotCurveItem(pen=({'color': (idx, nPlots*1.3), 'width': 1}), skipFiniteCheck=True)
|
|
plot.addItem(curve)
|
|
curve.setPos(0,idx*6)
|
|
curves.append(curve)
|
|
|
|
plot.setYRange(0, nPlots*6)
|
|
plot.setXRange(0, nSamples)
|
|
plot.resize(600,900)
|
|
|
|
rgn = pg.LinearRegionItem([nSamples/5.,nSamples/3.])
|
|
plot.addItem(rgn)
|
|
|
|
|
|
data = np.random.normal(size=(nPlots*23,nSamples))
|
|
ptr = 0
|
|
lastTime = time()
|
|
fps = None
|
|
count = 0
|
|
def update():
|
|
global curve, data, ptr, plot, lastTime, fps, nPlots, count
|
|
count += 1
|
|
|
|
for i in range(nPlots):
|
|
curves[i].setData(data[(ptr+i)%data.shape[0]])
|
|
|
|
ptr += nPlots
|
|
now = time()
|
|
dt = now - lastTime
|
|
lastTime = now
|
|
if fps is None:
|
|
fps = 1.0/dt
|
|
else:
|
|
s = np.clip(dt*3., 0, 1)
|
|
fps = fps * (1-s) + (1.0/dt) * s
|
|
plot.setTitle('%0.2f fps' % fps)
|
|
#app.processEvents() ## force complete redraw for every plot
|
|
timer = QtCore.QTimer()
|
|
timer.timeout.connect(update)
|
|
timer.start(0)
|
|
|
|
if __name__ == '__main__':
|
|
pg.exec()
|