Skip to content

mcfletch/galry

 
 

Repository files navigation

Galry: high performance interactive visualization package in Python

Galry is a high performance interactive visualization package in Python based on OpenGL. It allows to interactively visualize very large plots (tens of millions of points) in real time, by using the graphics card as much as possible.

Galry's high-level interface is directly inspired by Matplotlib and Matlab. The low-level interface can be used to write complex interactive visualization GUIs with Qt that deal with large 2D/3D datasets.

Visualization capabilities of Galry are not restricted to plotting, and include textures, 3D meshes, graphs, shapes, etc. Custom shaders can also be written for advanced uses.

Click here to go to the FAQ.

User survey

We'd be very grateful if you could fill in this really short form if you're interested in Galry!

Gallery

Multiple plots Multiple bar plots Dynamic fractal

Click here to see all screenshots and videos.

Installation

Galry should work on any platform (Window/Linux/MacOS). Mandatory dependencies include Python 2.7, Numpy, either PyQt4 or PySide, PyOpenGL, matplotlib. OpenGL v2+ is required (it's probably a good idea to use the latest graphics card drivers).

Galry is licensed under the BSD license.

Quick install

  • Make sure you've installed all dependencies.

  • Download galry's package (ZIP button on top of the page for the full repository, or see links below).

  • Extract the package and do python setup.py install.

  • To test it, open a Python or IPython prompt and type:

    from galry import *
    from numpy.random import randn
    plot(randn(3, 10000))
    show()
    
  • You should see three overlayed random signals. You can navigate with the mouse and the keyboard. Press H to see all available actions.

Click here to go to the installation page.

Packages

Quick links

About

High-performance interactive visualization in Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 93.9%
  • JavaScript 6.1%