2016-02-04 02:28:59 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
import initExample ## Add path to library (just for examples; you do not need this)
|
|
|
|
from pyqtgraph.Qt import QtGui, QtCore
|
|
|
|
import numpy as np
|
|
|
|
import pyqtgraph as pg
|
|
|
|
from pyqtgraph.ptime import time
|
2021-01-27 18:59:07 +00:00
|
|
|
app = pg.mkQApp("Infinite Line Performance")
|
2016-02-04 02:28:59 +00:00
|
|
|
|
|
|
|
p = pg.plot()
|
|
|
|
p.setWindowTitle('pyqtgraph performance: InfiniteLine')
|
|
|
|
p.setRange(QtCore.QRectF(0, -10, 5000, 20))
|
|
|
|
p.setLabel('bottom', 'Index', units='B')
|
|
|
|
curve = p.plot()
|
|
|
|
|
|
|
|
# Add a large number of horizontal InfiniteLine to plot
|
|
|
|
for i in range(100):
|
|
|
|
line = pg.InfiniteLine(pos=np.random.randint(5000), movable=True)
|
|
|
|
p.addItem(line)
|
|
|
|
|
|
|
|
data = np.random.normal(size=(50, 5000))
|
|
|
|
ptr = 0
|
|
|
|
lastTime = time()
|
|
|
|
fps = None
|
|
|
|
|
|
|
|
|
|
|
|
def update():
|
|
|
|
global curve, data, ptr, p, lastTime, fps
|
|
|
|
curve.setData(data[ptr % 10])
|
|
|
|
ptr += 1
|
|
|
|
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
|
|
|
|
p.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__':
|
2021-03-22 18:17:12 +00:00
|
|
|
pg.mkQApp().exec_()
|