Visualizes 3d/4d NumPy arrays using Matplotlib and PyQt5.


Keywords
3d, image, viewer, medical, numpy
License
GPL-3.0
Install
pip install vidi3d==1.2.3

Documentation

vidi3d

Visualizes 3D/4D NumPy arrays using Matplotlib and PyQt5.

Installation and Requirements

The following libraries are required:

  • Python 3
  • Numpy: General purpose array-processing package.
  • Matplotlib: Python plotting package .
  • PyQt5: Python bindings for Qt application framework.

To install, use: pip3 install vidi3d.

The software can also be found at https://github.com/AlanKuurstra/vidi3d.

Usage

import vidi3d as v
# compare a list of 2d images (an additional temporal dimension is optional)
v.compare2d(listOf2dImages) 
# compare a list of 3d images (an additional temporal dimension is optional)
v.compare3d(listOf3dImages) 

Some simple examples can be found in the Examples/ folder.