pyqtgraph/examples/test_ROItypes.py

111 lines
2.9 KiB
Python
Raw Normal View History

2010-03-22 05:48:52 +00:00
#!/usr/bin/python -i
# -*- coding: utf-8 -*-
## Add path to library (just for examples; you do not need this)
import sys, os
sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..'))
2010-03-22 05:48:52 +00:00
from PyQt4 import QtCore, QtGui
import numpy as np
import pyqtgraph as pg
2010-03-22 05:48:52 +00:00
## create GUI
app = QtGui.QApplication([])
w = QtGui.QMainWindow()
v = pg.GraphicsView()
v.invertY(True) ## Images usually have their Y-axis pointing downward
2010-03-22 05:48:52 +00:00
v.setAspectLocked(True)
v.enableMouse(True)
v.autoPixelScale = False
w.setCentralWidget(v)
s = v.scene()
2010-07-25 04:33:26 +00:00
v.setRange(QtCore.QRect(-2, -2, 220, 220))
w.show()
2010-03-22 05:48:52 +00:00
## Create image to display
arr = np.ones((100, 100), dtype=float)
2010-03-22 05:48:52 +00:00
arr[45:55, 45:55] = 0
arr[25, :] = 5
arr[:, 25] = 5
arr[75, :] = 5
arr[:, 75] = 5
arr[50, :] = 10
arr[:, 50] = 10
## Create image items, add to scene and set position
im1 = pg.ImageItem(arr)
im2 = pg.ImageItem(arr)
2010-03-22 05:48:52 +00:00
s.addItem(im1)
s.addItem(im2)
im2.moveBy(110, 20)
im3 = pg.ImageItem()
2010-03-22 05:48:52 +00:00
s.addItem(im3)
im3.moveBy(0, 130)
im3.setZValue(10)
im4 = pg.ImageItem()
2010-03-22 05:48:52 +00:00
s.addItem(im4)
im4.moveBy(110, 130)
im4.setZValue(10)
## create the plot
pi1 = pg.PlotItem()
2010-07-25 04:33:26 +00:00
s.addItem(pi1)
pi1.scale(0.5, 0.5)
pi1.setGeometry(0, 170, 300, 100)
lastRoi = None
def updateRoi(roi):
global im1, im2, im3, im4, arr, lastRoi
if roi is None:
return
lastRoi = roi
arr1 = roi.getArrayRegion(im1.image, img=im1)
im3.updateImage(arr1, autoRange=True)
arr2 = roi.getArrayRegion(im2.image, img=im2)
im4.updateImage(arr2, autoRange=True)
updateRoiPlot(roi, arr1)
def updateRoiPlot(roi, data=None):
if data is None:
data = roi.getArrayRegion(im1.image, img=im1)
if data is not None:
roi.curve.updateData(data.mean(axis=1))
## Create a variety of different ROI types
2010-07-25 04:33:26 +00:00
rois = []
rois.append(pg.widgets.TestROI([0, 0], [20, 20], maxBounds=QtCore.QRectF(-10, -10, 230, 140), pen=(0,9)))
rois.append(pg.widgets.LineROI([0, 0], [20, 20], width=5, pen=(1,9)))
rois.append(pg.widgets.MultiLineROI([[0, 50], [50, 60], [60, 30]], width=5, pen=(2,9)))
rois.append(pg.widgets.EllipseROI([110, 10], [30, 20], pen=(3,9)))
rois.append(pg.widgets.CircleROI([110, 50], [20, 20], pen=(4,9)))
rois.append(pg.widgets.PolygonROI([[2,0], [2.1,0], [2,.1]], pen=(5,9)))
#rois.append(SpiralROI([20,30], [1,1], pen=mkPen(0)))
## Add each ROI to the scene and link its data to a plot curve with the same color
2010-07-25 04:33:26 +00:00
for r in rois:
s.addItem(r)
c = pi1.plot(pen=r.pen)
r.curve = c
r.sigRegionChanged.connect(updateRoi)
2010-07-25 04:33:26 +00:00
def updateImage():
global im1, arr, lastRoi
r = abs(np.random.normal(loc=0, scale=(arr.max()-arr.min())*0.1, size=arr.shape))
2010-07-25 04:33:26 +00:00
im1.updateImage(arr + r)
updateRoi(lastRoi)
for r in rois:
updateRoiPlot(r)
## Rapidly update one of the images with random noise
2010-07-25 04:33:26 +00:00
t = QtCore.QTimer()
t.timeout.connect(updateImage)
2010-07-25 04:33:26 +00:00
t.start(50)
2010-03-22 05:48:52 +00:00
## Start Qt event loop unless running in interactive mode.
if sys.flags.interactive != 1:
app.exec_()