Despite not being a proficient GUI programmer, I figured out how to use the pyqtgraph module\'s ImageView function to display an image that I can pan/zoom and click on to ge
pyqtgraph.ImageView does support rgb / rgba images. For example:
pyqtgraph.ImageView
import numpy as np import pyqtgraph as pg data = np.random.randint(255, size=(100, 100, 3)) pg.image(data)
..and if you want to display the exact image data without automatic level adjustment:
pg.image(data, levels=(0, 255))