2010-03-22 05:48:52 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2013-02-20 16:13:50 +00:00
|
|
|
"""
|
|
|
|
This example demonstrates the use of ImageView, which is a high-level widget for
|
|
|
|
displaying and analyzing 2D and 3D data. ImageView provides:
|
|
|
|
|
|
|
|
1. A zoomable region (ViewBox) for displaying the image
|
|
|
|
2. A combination histogram and gradient editor (HistogramLUTItem) for
|
|
|
|
controlling the visual appearance of the image
|
|
|
|
3. A timeline for selecting the currently displayed frame (for 3D data only).
|
|
|
|
4. Tools for very basic analysis of image data (see ROI and Norm buttons)
|
|
|
|
|
|
|
|
"""
|
2010-03-22 06:21:56 +00:00
|
|
|
## Add path to library (just for examples; you do not need this)
|
2012-12-26 22:51:52 +00:00
|
|
|
import initExample
|
2011-04-05 14:35:50 +00:00
|
|
|
|
|
|
|
import numpy as np
|
2012-03-02 03:58:02 +00:00
|
|
|
from pyqtgraph.Qt import QtCore, QtGui
|
2011-04-05 14:35:50 +00:00
|
|
|
import pyqtgraph as pg
|
2010-03-22 05:48:52 +00:00
|
|
|
|
|
|
|
app = QtGui.QApplication([])
|
2010-03-22 06:21:56 +00:00
|
|
|
|
|
|
|
## Create window with ImageView widget
|
2010-03-22 05:48:52 +00:00
|
|
|
win = QtGui.QMainWindow()
|
2011-06-14 23:47:52 +00:00
|
|
|
win.resize(800,800)
|
2011-04-05 14:35:50 +00:00
|
|
|
imv = pg.ImageView()
|
2010-03-22 05:48:52 +00:00
|
|
|
win.setCentralWidget(imv)
|
|
|
|
win.show()
|
2013-02-25 04:09:03 +00:00
|
|
|
win.setWindowTitle('pyqtgraph example: ImageView')
|
2010-03-22 05:48:52 +00:00
|
|
|
|
2011-04-05 14:35:50 +00:00
|
|
|
## Create random 3D data set with noisy signals
|
2014-03-11 23:01:34 +00:00
|
|
|
img = pg.gaussianFilter(np.random.normal(size=(200, 200)), (5, 5)) * 20 + 100
|
2011-04-05 14:35:50 +00:00
|
|
|
img = img[np.newaxis,:,:]
|
|
|
|
decay = np.exp(-np.linspace(0,0.3,100))[:,np.newaxis,np.newaxis]
|
|
|
|
data = np.random.normal(size=(100, 200, 200))
|
2010-07-24 18:29:09 +00:00
|
|
|
data += img * decay
|
|
|
|
data += 2
|
|
|
|
|
|
|
|
## Add time-varying signal
|
2011-04-05 14:35:50 +00:00
|
|
|
sig = np.zeros(data.shape[0])
|
|
|
|
sig[30:] += np.exp(-np.linspace(1,10, 70))
|
|
|
|
sig[40:] += np.exp(-np.linspace(1,10, 60))
|
|
|
|
sig[70:] += np.exp(-np.linspace(1,10, 30))
|
2010-07-24 18:29:09 +00:00
|
|
|
|
2011-04-05 14:35:50 +00:00
|
|
|
sig = sig[:,np.newaxis,np.newaxis] * 3
|
2010-07-24 18:29:09 +00:00
|
|
|
data[:,50:60,50:60] += sig
|
|
|
|
|
2010-03-22 06:21:56 +00:00
|
|
|
|
2013-02-20 16:13:50 +00:00
|
|
|
## Display the data and assign each frame a time value from 1.0 to 3.0
|
2011-04-05 14:35:50 +00:00
|
|
|
imv.setImage(data, xvals=np.linspace(1., 3., data.shape[0]))
|
2010-03-22 06:21:56 +00:00
|
|
|
|
2011-04-05 14:35:50 +00:00
|
|
|
## Start Qt event loop unless running in interactive mode.
|
2012-12-05 05:25:45 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys
|
|
|
|
if (sys.flags.interactive != 1) or not hasattr(QtCore, 'PYQT_VERSION'):
|
|
|
|
QtGui.QApplication.instance().exec_()
|