Skip to main content

A widget for real time image display in PyQT GUIs.

Project description

ImageDisplayQT

ImageDisplayQT is a PyQT widget for displaying live images in GUIs. It was developed for scientific imaging applications, with features including zoom, pixel inspection, autoscaling, region of interest with live mean display, and the ability to add persistent overlays.

It is lightweight and simple to use, requiring only a few lines of code to be added to your GUI. It can display images at video rate on modest hardware.

It currently supports monochrome and colour (RGB) images stored as 2D and 3D numpy arrays. 1D array data can also be displayed as a simple line graph.

Full documentation is available.

You can see the widget's appearance on Youtube.

You can pip install ImageDisplayQT for the latest stable version.

The widget is developed mainly by Mike Hughes at the Applied Optics Group, School of Physics and Astronomy, University of Kent.

The widget was originally developed for our in-house microscopy and imaging systems and will evolve with our requirements. Bug reports, contributions and pull requests are welcome.

Getting started

Import the class:

from image_display import ImageDisplay

Create an instance:

imDisplay = ImageDisplay()

and then add this widget to your GUI.

To update the image, call:

imDisplay.set_image(img)

where img is a 2D numpy array containing a monochrome image or a 3D numpy array containing a colour (RGB) image.

Toggle the status bar visibility using:

imDisplay.set_status_bar(True/False)

Toggle the zoom facility using the mouse scroll wheel (or pinch zoom):

imDisplay.set_zoom_enabled(True/False)

Once zoomed you can pan by holding the middle or right mouse buttons.

Toggle the ability to draw a rectangular region of interest by holding the left mouse button and dragging:

imDisplay.set_roi_enabled(True/False)

Set the colormap to be any Matplotlib colormap using:

imDisplay.set_colormap(colormapName)

Please see the example in the examples folder for more functionality, including overlays and autoscaling.

Requirements

Required Packages:

  • PyQt (tested on v5)
  • Numpy
  • PIL
  • Matplotlib (for colormaps)

Acknowledgements

Funding from EPSRC (Ultrathin fluorescence microscope in a needle, EP/R019274/1), Royal Society (Ultrathin Inline Holographic Microscopy) and University of Kent.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ImageDisplayQT-1.1.0.tar.gz (10.7 kB view hashes)

Uploaded Source

Built Distribution

ImageDisplayQT-1.1.0-py3-none-any.whl (11.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page