Skip to content

Python Image Tool for visualizing multidimensional data. Applications include analysis of data in microscopy (STM, SSM, optics), ARPES, XRD, or other multidimensional datasets on regularly gridded coordinates.

License

Notifications You must be signed in to change notification settings

kgord831/PyImageTool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyImageTool

This is a Python Image Tool which is heavily inspired by the Igor Pro native Image Tool written by the Advanced Light Source (ALS). This project aims to build a highly interactive tool which can be used to rapidly visualize and analyze multidimensional data (up to four dimensions) using images. The project leverages the pyqtgraph library for rapid visualization and is cross-platform.

PyImageTool Demo

Install

With anaconda

Use the Anaconda Package Manager and install packages from the conda-forge channel when possible. I recommend first installing in a virtual environment.

conda create --name imagetool
conda activate imagetool
conda install -c conda-forge numpy scipy pillow pyqtgraph
python setup.py install

where the virtual env name imagetool may be changed for a name of your choice.

Important: You should test pyqtgraph by opening python and running import pyqtgraph.examples; pyqtgraph.examples.run(). If you have never installed PyQt before, you need to install either conda install -c conda-forge pyqt or conda install -c conda-forge pyside2.

numpy is the workhorse library for fast slicing. scipy is used for regular grid interpolation. pillow is used for created images of the colormaps. pyqtgraph is the workhorse library for data visualization.

This tool is compatible with xarray, if you have it available in your environment.

You can test the install using pytest. Install the pytest package and then run test_PyImageTool.py in the tests subfolder.

conda install -c conda-forge pytest pytest-qt
pytest test_PyImageTool.py

With pip

I recommend using a pip virtual environment.

python -m venv imagetool

Activate your virtual environment and change into the src directory where setup.py is located. Now run

pip install .

Important: You should test pyqtgraph by opening python and running import pyqtgraph.examples; pyqtgraph.examples.run(). If you have never installed PyQt before, you need to install either pip install PyQt5 or pip install PySide2.

You can test the install using pytest. Install the pytest package and then run test_PyImageTool.py in the tests subfolder.

pip install pytest pytest-qt
pytest test_PyImageTool.py

Quick Guide

Controls

  • Hold shift to drag the cursors to mouse location.
  • While hovering over the cursor index or cursor coordinate spinbox, use the middle mouse wheel to move by increments of 1
  • Hold control and scroll middle mouse wheel to move by increments of 10
  • Left-click and drag to move image/plot
  • Right-click and drag to resize (horizontal drag resizes horizontally, vertical drag resizes vertically)
  • Ctrl+A will undo manipulations to view all data
  • Right-click to open a menu.
    • If you right-click on an image, you can set aspect ratio and make quick edits to the colormap
    • You can export images and line cuts to png files
  • If you return the ImageTool object to a variable in the Python kernel, you can access a slice of the data at any time using the tool.get() function. See above for example.

Editing Colormaps

  • Right-click image, hover over "Color Map" and select "Edit Color Map"
  • Color map normalizations on top, choices are "Power Law" or "Piecewise." Power law useful for quickly rescaling to make weak features stronger or vice versa with the gamma control, but piecewise gives you much more control.
  • You can always see how the colormap is changing in the top right image of the colorbar.
  • Bottom right is a histogram of the data. The x-axis is the value in the data and the y-axis is normalized weight at that value. For example, an image of a gaussian (z = exp(-x^2-y^2)) would have a large amount of weight at x-axis=0 falling off rapidly to almost zero at x-axis=1 (because there is only one point where z = 1 which is at x=0, y=0 in the image).
  • You can scan the vertical bar in the histogram which controls the isocurve level. Because the algorithm that computes the isocurve is pure python, it is slow. If the tool noticeably slows down, consider disabling the isocurve calculations by unticking the box in the top left.
  • In addition to the histogram, a line is drawn representing how values in your data is mapped to the colorbar. Imagine the colorbar is the y-axis and values in the image are on the x-axis. By default, color scales are linear. As you change gamma in power-law mode, you will see this curve become nonlinear, as the colorbar will noticeably deform.
  • If the color map editor is in piecewise mode, you can drag points representing the max and min of the color scale. Furthermore, by right-clicking in the histogram area, you can add more points. This is useful for forcing your colorbar to highlight a region between two isosurfaces.

Examples

In the examples folder, you will find a few scripts and a Jupyter Notebook to help you use this tool for your work.

Goals

  • Downsample data
  • Export custom colormaps to matplotlib
  • Import common multidimensional data files (HDF5)
  • Create an equivalent matplotlib figure given a plot/image
  • Layout management
  • Aribtrary line cuts in multidimensional data
  • Color ROI, on an image plot, Right click -> Color Map -> Scale to view
  • Export data to Jupyter notebook, tool = imagetool(data); tool.get('xy')

Colormaps

The philosophy of this tool regarding colormaps is simple: don't change your data, change the way you view it. There are several perceptually uniform colormaps built into the tool and a few non-perceptually uniform colormaps. You can add more by numpy.save'ing a (N, 3) np.uint8 array into the cmaps directory and then running make_icons.py. You will have to restart the tool to load. Use the interactive colormap editor in piecewise mode to highlight specific parts of your data.

The Future

A future goal is better integration with Jupyter Notebook. Existing javascript visualization libraries such as Bokeh exist (with higher level APIs such as Holoviews), but my attempts at writing a Bokeh image tool end up atrociously slow. Libraries like Holoviews are promising but their API has been difficult for me to work with. This is built on Qt, a mature platform for GUI design, and it's blazing fast. While not embedded in a Jupyter cell, you can still call it from Jupyter and work with the generated window.

About

Python Image Tool for visualizing multidimensional data. Applications include analysis of data in microscopy (STM, SSM, optics), ARPES, XRD, or other multidimensional datasets on regularly gridded coordinates.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published