This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pyqtgraph as pg | |
| from pyqtgraph.Qt import QtGui, QtCore | |
| pg.mkQApp() | |
| ## Create window with two ImageView widgets | |
| win = QtGui.QMainWindow() | |
| win.resize(800,800) | |
| win.setWindowTitle('pyqtgraph example: DataSlicing') | |
| cw = QtGui.QWidget() | |
| win.setCentralWidget(cw) |