6783f4fa26
- numerous fixes in close() functions - added Transform class - ROI widgets now operate in degrees instead of radians for easier Qt compatibility
39 lines
850 B
Python
Executable File
39 lines
850 B
Python
Executable File
# -*- coding: utf-8 -*-
|
|
## Add path to library (just for examples; you do not need this)
|
|
import sys, os
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', '..'))
|
|
|
|
|
|
from PyQt4 import QtCore, QtGui
|
|
import numpy as np
|
|
import pyqtgraph as pg
|
|
|
|
app = QtGui.QApplication([])
|
|
|
|
## Create window with GraphicsView widget
|
|
win = QtGui.QMainWindow()
|
|
view = pg.GraphicsView()
|
|
#view.useOpenGL(True)
|
|
win.setCentralWidget(view)
|
|
win.show()
|
|
|
|
## Allow mouse scale/pan
|
|
view.enableMouse()
|
|
|
|
## ..But lock the aspect ratio
|
|
view.setAspectLocked(True)
|
|
|
|
## Create image item
|
|
img = pg.ImageItem(np.zeros((200,200)))
|
|
view.scene().addItem(img)
|
|
|
|
## Set initial view bounds
|
|
view.setRange(QtCore.QRectF(0, 0, 200, 200))
|
|
|
|
img.setDrawKernel(1)
|
|
img.setLevels(10,0)
|
|
|
|
## Start Qt event loop unless running in interactive mode.
|
|
if sys.flags.interactive != 1:
|
|
app.exec_()
|